pub struct ConfigLayerEntry {
pub source: ConfigSource,
pub path: Option<PathBuf>,
pub raw_toml: Option<String>,
pub value: Value,
}Fields§
§source: ConfigSource§path: Option<PathBuf>§raw_toml: Option<String>§value: ValueTrait Implementations§
Source§impl Clone for ConfigLayerEntry
impl Clone for ConfigLayerEntry
Source§fn clone(&self) -> ConfigLayerEntry
fn clone(&self) -> ConfigLayerEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigLayerEntry
impl Debug for ConfigLayerEntry
Source§impl PartialEq for ConfigLayerEntry
impl PartialEq for ConfigLayerEntry
Source§fn eq(&self, other: &ConfigLayerEntry) -> bool
fn eq(&self, other: &ConfigLayerEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConfigLayerEntry
Auto Trait Implementations§
impl Freeze for ConfigLayerEntry
impl RefUnwindSafe for ConfigLayerEntry
impl Send for ConfigLayerEntry
impl Sync for ConfigLayerEntry
impl Unpin for ConfigLayerEntry
impl UnsafeUnpin for ConfigLayerEntry
impl UnwindSafe for ConfigLayerEntry
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