pub struct ConfigSnapshot {
pub config: Config,
pub generation: u64,
pub metadata: Option<ConfigStoreMetadata>,
}Expand description
Snapshot returned by config runtime operations.
Fields§
§config: Config§generation: u64§metadata: Option<ConfigStoreMetadata>Trait Implementations§
Source§impl Clone for ConfigSnapshot
impl Clone for ConfigSnapshot
Source§fn clone(&self) -> ConfigSnapshot
fn clone(&self) -> ConfigSnapshot
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 ConfigSnapshot
impl Debug for ConfigSnapshot
Source§impl<'de> Deserialize<'de> for ConfigSnapshot
impl<'de> Deserialize<'de> for ConfigSnapshot
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
Source§impl From<ConfigSnapshot> for ConfigEnvelope
impl From<ConfigSnapshot> for ConfigEnvelope
Source§fn from(snapshot: ConfigSnapshot) -> Self
fn from(snapshot: ConfigSnapshot) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigSnapshot
impl RefUnwindSafe for ConfigSnapshot
impl Send for ConfigSnapshot
impl Sync for ConfigSnapshot
impl Unpin for ConfigSnapshot
impl UnsafeUnpin for ConfigSnapshot
impl UnwindSafe for ConfigSnapshot
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