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
impl Eq for ConfigurationKeyItem
Source§impl PartialEq for ConfigurationKeyItem
impl PartialEq 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