#[non_exhaustive]pub enum Value {
Unit,
Bool(bool),
Char(char),
Number(Number),
Bytes(Vec<u8>),
String(String),
Sequence(Vec<Value>),
Map(Vec<(Value, Value)>),
Variant(Box<(Value, Value)>),
Option(Option<Box<Value>>),
}Expand description
A dynamic value capable of representing any Müsli type whether it be complex or simple.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unit
The default unit value.
Bool(bool)
A boolean value.
Char(char)
A character.
Number(Number)
A number.
Bytes(Vec<u8>)
Available on crate feature
alloc only.An array.
String(String)
Available on crate feature
alloc only.A string in a value.
Sequence(Vec<Value>)
Available on crate feature
alloc only.A unit value.
Map(Vec<(Value, Value)>)
Available on crate feature
alloc only.A pair stored in the value.
Variant(Box<(Value, Value)>)
Available on crate feature
alloc only.A variant pair. The first value identifies the variant, the second value contains the value of the variant.
Option(Option<Box<Value>>)
Available on crate feature
alloc only.An optional value.
Implementations§
Source§impl Value
impl Value
Sourcepub fn into_value_decoder<const OPT: Options, C: ?Sized>(
self,
cx: &C,
) -> AsValueDecoder<'_, OPT, C>
pub fn into_value_decoder<const OPT: Options, C: ?Sized>( self, cx: &C, ) -> AsValueDecoder<'_, OPT, C>
Construct a AsValueDecoder implementation out of this value which
emits the specified error E.
Trait Implementations§
Source§impl PartialOrd for Value
impl PartialOrd for Value
impl StructuralPartialEq for Value
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