pub struct ConfigurationKeyItem {
pub key: String<50usize>,
pub readonly: bool,
pub value: Option<String<500usize>>,
}Fields§
§key: String<50usize>§readonly: bool§value: Option<String<500usize>>Trait Implementations§
Source§impl Clone for ConfigurationKeyItem
impl Clone for ConfigurationKeyItem
Source§fn clone(&self) -> ConfigurationKeyItem
fn clone(&self) -> ConfigurationKeyItem
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 ConfigurationKeyItem
impl Debug for ConfigurationKeyItem
Source§impl<'de> Deserialize<'de> for ConfigurationKeyItem
impl<'de> Deserialize<'de> for ConfigurationKeyItem
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 ConfigurationKeyItem
Source§impl PartialEq for ConfigurationKeyItem
impl PartialEq for ConfigurationKeyItem
Source§impl Serialize for ConfigurationKeyItem
impl Serialize for ConfigurationKeyItem
impl StructuralPartialEq for ConfigurationKeyItem
Auto Trait Implementations§
impl Freeze for ConfigurationKeyItem
impl RefUnwindSafe for ConfigurationKeyItem
impl Send for ConfigurationKeyItem
impl Sync for ConfigurationKeyItem
impl Unpin for ConfigurationKeyItem
impl UnsafeUnpin for ConfigurationKeyItem
impl UnwindSafe for ConfigurationKeyItem
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