pub struct ConfigTuple {
pub attribute: String,
pub value: String,
}Expand description
ConfigTuple : A key/value pair that makes up part of a configuration object.
Fields§
§attribute: StringA configuration object attribute.
value: StringThe value for the attribute.
Implementations§
Trait Implementations§
Source§impl Clone for ConfigTuple
impl Clone for ConfigTuple
Source§fn clone(&self) -> ConfigTuple
fn clone(&self) -> ConfigTuple
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 ConfigTuple
impl Debug for ConfigTuple
Source§impl Default for ConfigTuple
impl Default for ConfigTuple
Source§fn default() -> ConfigTuple
fn default() -> ConfigTuple
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConfigTuple
impl PartialEq for ConfigTuple
Source§impl Serialize for ConfigTuple
impl Serialize for ConfigTuple
impl StructuralPartialEq for ConfigTuple
Auto Trait Implementations§
impl Freeze for ConfigTuple
impl RefUnwindSafe for ConfigTuple
impl Send for ConfigTuple
impl Sync for ConfigTuple
impl Unpin for ConfigTuple
impl UnwindSafe for ConfigTuple
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