pub struct ConfigReadResponse {
pub config: Config,
pub layers: Option<Vec<ConfigLayer>>,
pub origins: BTreeMap<String, ConfigLayerMetadata>,
}Fields§
§config: Config§layers: Option<Vec<ConfigLayer>>§origins: BTreeMap<String, ConfigLayerMetadata>Trait Implementations§
Source§impl Clone for ConfigReadResponse
impl Clone for ConfigReadResponse
Source§fn clone(&self) -> ConfigReadResponse
fn clone(&self) -> ConfigReadResponse
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 ConfigReadResponse
impl Debug for ConfigReadResponse
Source§impl<'de> Deserialize<'de> for ConfigReadResponse
impl<'de> Deserialize<'de> for ConfigReadResponse
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 ConfigReadResponse
impl RefUnwindSafe for ConfigReadResponse
impl Send for ConfigReadResponse
impl Sync for ConfigReadResponse
impl Unpin for ConfigReadResponse
impl UnsafeUnpin for ConfigReadResponse
impl UnwindSafe for ConfigReadResponse
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