#[non_exhaustive]pub enum ValueKind {
Undefined,
None,
Bool,
Number,
String,
Bytes,
Seq,
Map,
Iterable,
Plain,
Invalid,
}
Expand description
Describes the kind of value.
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.
Undefined
The value is undefined
None
The value is the none singleton (()
)
Bool
The value is a bool
Number
The value is a number of a supported type.
String
The value is a string.
Bytes
The value is a byte array.
Seq
The value is an array of other values.
Map
The value is a key/value mapping.
Iterable
An iterable
Plain
A plain object without specific behavior.
Invalid
This value is invalid. This can happen when a serialization error occurred.
Trait Implementations§
Source§impl Ord for ValueKind
impl Ord for ValueKind
Source§impl PartialOrd for ValueKind
impl PartialOrd for ValueKind
impl Copy for ValueKind
impl Eq for ValueKind
impl StructuralPartialEq for ValueKind
Auto Trait Implementations§
impl Freeze for ValueKind
impl RefUnwindSafe for ValueKind
impl Send for ValueKind
impl Sync for ValueKind
impl Unpin for ValueKind
impl UnwindSafe for ValueKind
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