pub struct AnnotatedValue {
pub name: ConfigNamePathBuf,
pub value: ConfigValue,
pub source: ConfigSource,
pub path: Option<PathBuf>,
pub is_overridden: bool,
}Expand description
Configuration variable with its source information.
Fields§
§name: ConfigNamePathBufDotted name path to the configuration variable.
value: ConfigValueConfiguration value.
source: ConfigSourceSource of the configuration value.
path: Option<PathBuf>Path to the source file, if available.
is_overridden: boolTrue if this value is overridden in higher precedence layers.
Trait Implementations§
Source§impl Clone for AnnotatedValue
impl Clone for AnnotatedValue
Source§fn clone(&self) -> AnnotatedValue
fn clone(&self) -> AnnotatedValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AnnotatedValue
impl Debug for AnnotatedValue
Source§impl Serialize for AnnotatedValue
impl Serialize for AnnotatedValue
Source§impl WrapTemplateProperty<'static, AnnotatedValue> for GenericTemplatePropertyKind<'static, AnnotatedValue>
impl WrapTemplateProperty<'static, AnnotatedValue> for GenericTemplatePropertyKind<'static, AnnotatedValue>
fn wrap_property( property: BoxedTemplateProperty<'static, AnnotatedValue>, ) -> Self
Auto Trait Implementations§
impl Freeze for AnnotatedValue
impl RefUnwindSafe for AnnotatedValue
impl Send for AnnotatedValue
impl Sync for AnnotatedValue
impl Unpin for AnnotatedValue
impl UnwindSafe for AnnotatedValue
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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>
Converts
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>
Converts
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 more