pub struct ConfigMappingListValue {
pub config: Vec<ConfigMappingValue>,
pub updated: Option<String>,
pub version: Option<String>,
pub extra: HashMap<String, Value>,
}Expand description
Value payload returned by the get mode of configMapping.
Fields§
§config: Vec<ConfigMappingValue>Available mapping configurations.
updated: Option<String>Last update timestamp.
version: Option<String>Version identifier.
extra: HashMap<String, Value>Forward-compatible storage for additional fields.
Trait Implementations§
Source§impl Clone for ConfigMappingListValue
impl Clone for ConfigMappingListValue
Source§fn clone(&self) -> ConfigMappingListValue
fn clone(&self) -> ConfigMappingListValue
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 ConfigMappingListValue
impl Debug for ConfigMappingListValue
Source§impl<'de> Deserialize<'de> for ConfigMappingListValue
impl<'de> Deserialize<'de> for ConfigMappingListValue
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 ConfigMappingListValue
impl RefUnwindSafe for ConfigMappingListValue
impl Send for ConfigMappingListValue
impl Sync for ConfigMappingListValue
impl Unpin for ConfigMappingListValue
impl UnsafeUnpin for ConfigMappingListValue
impl UnwindSafe for ConfigMappingListValue
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