pub struct Serialized<T> {
pub value: T,
pub key: Option<String>,
pub profile: Profile,
/* private fields */
}
Expand description
A Provider
that sources values directly from a serialize type.
§Provider Details
-
Profile
This provider does not set a profile.
-
Metadata
This provider is named
T
(viastd::any::type_name
). The source location is set to the call site of the constructor. -
Data (Unkeyed)
When data is not keyed,
T
is expected to serialize to aDict
and is emitted directly as the value for the configured profile. -
Data (Keyed)
When keyed (
Serialized::default()
,Serialized::global()
,Serialized::key()
),T
can serialize to anyValue
and is emitted as the value of the configuredkey
key path. Nested dictionaries are created for every path component delimited by.
in thekey
string, each dictionary mapping the path component to the child, with the leaf mapping to the serializedT
. For instance,a.b.c
results in{ a: { b: { c: T }}}
.
Fields§
§value: T
The value to be serialized and used as the provided data.
key: Option<String>
The key path (a.b.c
) to emit the value to or the root if None
.
profile: Profile
The profile to emit the value to. Defaults to Profile::Default
.
Implementations§
Source§impl<T> Serialized<T>
impl<T> Serialized<T>
Sourcepub fn from<P: Into<Profile>>(value: T, profile: P) -> Serialized<T>
pub fn from<P: Into<Profile>>(value: T, profile: P) -> Serialized<T>
Constructs an (unkeyed) provider that emits value
, which must
serialize to a dict
, to the profile
.
use serde::Deserialize;
use figment::{Figment, Jail, providers::Serialized, util::map};
#[derive(Debug, PartialEq, Deserialize)]
struct Config {
numbers: Vec<usize>,
}
Jail::expect_with(|jail| {
let map = map!["numbers" => &[1, 2, 3]];
// This is also `Serialized::defaults(&map)`;
let figment = Figment::from(Serialized::from(&map, "default"));
let config: Config = figment.extract()?;
assert_eq!(config, Config { numbers: vec![1, 2, 3] });
// This is also `Serialized::defaults(&map).profile("debug")`;
let figment = Figment::from(Serialized::from(&map, "debug"));
let config: Config = figment.select("debug").extract()?;
assert_eq!(config, Config { numbers: vec![1, 2, 3] });
Ok(())
});
Sourcepub fn defaults(value: T) -> Serialized<T>
pub fn defaults(value: T) -> Serialized<T>
Emits value
, which must serialize to a Dict
, to the Default
profile.
Equivalent to Serialized::from(value, Profile::Default)
.
See Serialized::from()
.
Sourcepub fn globals(value: T) -> Serialized<T>
pub fn globals(value: T) -> Serialized<T>
Emits value
, which must serialize to a Dict
, to the Global
profile.
Equivalent to Serialized::from(value, Profile::Global)
.
See Serialized::from()
.
Sourcepub fn default(key: &str, value: T) -> Serialized<T>
pub fn default(key: &str, value: T) -> Serialized<T>
Emits a nested dictionary to the Default
profile keyed by key
key path with the final key mapping to value
.
See Data (keyed) for key path details.
Equivalent to Serialized::from(value, Profile::Default).key(key)
.
See Serialized::from()
and Serialized::key()
.
Sourcepub fn global(key: &str, value: T) -> Serialized<T>
pub fn global(key: &str, value: T) -> Serialized<T>
Emits a nested dictionary to the Global
profile keyed by key
with
the final key mapping to value
.
See Data (keyed) for key path details.
Equivalent to Serialized::from(value, Profile::Global).key(key)
.
See Serialized::from()
and Serialized::key()
.
Sourcepub fn profile<P: Into<Profile>>(self, profile: P) -> Self
pub fn profile<P: Into<Profile>>(self, profile: P) -> Self
Sets the profile to emit the serialized value to.
use figment::{Figment, Jail, providers::Serialized};
Jail::expect_with(|jail| {
// This is also `Serialized::defaults(&map)`;
let figment = Figment::new()
.join(Serialized::default("key", "hey").profile("debug"))
.join(Serialized::default("key", "hi"));
let value: String = figment.extract_inner("key")?;
assert_eq!(value, "hi");
let value: String = figment.select("debug").extract_inner("key")?;
assert_eq!(value, "hey");
Ok(())
});
Sourcepub fn key(self, key: &str) -> Self
pub fn key(self, key: &str) -> Self
Sets the key path to emit the serialized value to.
See Data (keyed) for key path details.
use figment::{Figment, Jail, providers::Serialized};
Jail::expect_with(|jail| {
// This is also `Serialized::defaults(&map)`;
let figment = Figment::new()
.join(Serialized::default("key", "hey").key("other"))
.join(Serialized::default("key", "hi"));
let value: String = figment.extract_inner("key")?;
assert_eq!(value, "hi");
let value: String = figment.extract_inner("other")?;
assert_eq!(value, "hey");
Ok(())
});
Trait Implementations§
Source§impl<T: Clone> Clone for Serialized<T>
impl<T: Clone> Clone for Serialized<T>
Source§fn clone(&self) -> Serialized<T>
fn clone(&self) -> Serialized<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T: Debug> Debug for Serialized<T>
impl<T: Debug> Debug for Serialized<T>
Auto Trait Implementations§
impl<T> Freeze for Serialized<T>where
T: Freeze,
impl<T> RefUnwindSafe for Serialized<T>where
T: RefUnwindSafe,
impl<T> Send for Serialized<T>where
T: Send,
impl<T> Sync for Serialized<T>where
T: Sync,
impl<T> Unpin for Serialized<T>where
T: Unpin,
impl<T> UnwindSafe for Serialized<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.