pub struct ConfigStoreMetadata {
pub realm_id: Option<String>,
pub instance_id: Option<String>,
pub backend: Option<String>,
pub resolved_paths: Option<ConfigResolvedPaths>,
}Expand description
Optional metadata for config endpoints.
Fields§
§realm_id: Option<String>§instance_id: Option<String>§backend: Option<String>§resolved_paths: Option<ConfigResolvedPaths>Trait Implementations§
Source§impl Clone for ConfigStoreMetadata
impl Clone for ConfigStoreMetadata
Source§fn clone(&self) -> ConfigStoreMetadata
fn clone(&self) -> ConfigStoreMetadata
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 ConfigStoreMetadata
impl Debug for ConfigStoreMetadata
Source§impl<'de> Deserialize<'de> for ConfigStoreMetadata
impl<'de> Deserialize<'de> for ConfigStoreMetadata
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
Auto Trait Implementations§
impl Freeze for ConfigStoreMetadata
impl RefUnwindSafe for ConfigStoreMetadata
impl Send for ConfigStoreMetadata
impl Sync for ConfigStoreMetadata
impl Unpin for ConfigStoreMetadata
impl UnsafeUnpin for ConfigStoreMetadata
impl UnwindSafe for ConfigStoreMetadata
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