pub struct RuntimeConfigEntry {
pub key: String,
pub effective_value: String,
pub source: RuntimeConfigSource,
pub affects: Vec<RuntimeConfigEffect>,
}Expand description
One effective config value in a runtime snapshot.
Fields§
§key: String§effective_value: String§source: RuntimeConfigSource§affects: Vec<RuntimeConfigEffect>Implementations§
Trait Implementations§
Source§impl Clone for RuntimeConfigEntry
impl Clone for RuntimeConfigEntry
Source§fn clone(&self) -> RuntimeConfigEntry
fn clone(&self) -> RuntimeConfigEntry
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 RuntimeConfigEntry
impl Debug for RuntimeConfigEntry
Source§impl<'de> Deserialize<'de> for RuntimeConfigEntry
impl<'de> Deserialize<'de> for RuntimeConfigEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RuntimeConfigEntry
Source§impl PartialEq for RuntimeConfigEntry
impl PartialEq for RuntimeConfigEntry
Source§fn eq(&self, other: &RuntimeConfigEntry) -> bool
fn eq(&self, other: &RuntimeConfigEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeConfigEntry
impl Serialize for RuntimeConfigEntry
impl StructuralPartialEq for RuntimeConfigEntry
Auto Trait Implementations§
impl Freeze for RuntimeConfigEntry
impl RefUnwindSafe for RuntimeConfigEntry
impl Send for RuntimeConfigEntry
impl Sync for RuntimeConfigEntry
impl Unpin for RuntimeConfigEntry
impl UnsafeUnpin for RuntimeConfigEntry
impl UnwindSafe for RuntimeConfigEntry
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