pub struct Property {
pub key: String,
pub value: String,
}Expand description
A property representing a parsed configuration key-value pair.
Fields§
§key: StringA string representing the identifier for a particular property
value: StringA string representing the value for a particular property.
Trait Implementations§
Source§impl PartialOrd for Property
impl PartialOrd for Property
impl StructuralPartialEq for Property
Auto Trait Implementations§
impl Freeze for Property
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
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