pub enum Value {
Undefined,
String(String),
List(Vec<String>),
Assoc(Vec<(String, String)>),
}
Available on crate feature
alloc
only.Expand description
Value.
Variants§
Undefined
Undefined (i.e. null).
String(String)
String value.
List(Vec<String>)
List.
Assoc(Vec<(String, String)>)
Associative array.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Value
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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