pub enum ValueKind {
Boolean,
Float,
Double,
SignedInteger,
String,
ByteString,
Symbol,
Record,
Sequence,
Set,
Dictionary,
Embedded,
}Variants
Boolean
Float
Double
SignedInteger
String
ByteString
Symbol
Record
Sequence
Set
Dictionary
Embedded
Trait Implementations
sourceimpl<'de, _Value: NestedValue, R: Reader<'de, _Value>> Deserialize<'de, _Value, R> for ValueKind
impl<'de, _Value: NestedValue, R: Reader<'de, _Value>> Deserialize<'de, _Value, R> for ValueKind
fn deserialize(r: &mut R) -> Result<Self, ParseError>
sourceimpl Ord for ValueKind
impl Ord for ValueKind
sourceimpl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Parse<_L, _Value> for ValueKind
impl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Parse<_L, _Value> for ValueKind
fn parse(_ctxt: _L, value: &_Value) -> Result<Self, ParseError>
sourceimpl PartialOrd<ValueKind> for ValueKind
impl PartialOrd<ValueKind> for ValueKind
sourcefn partial_cmp(&self, other: &ValueKind) -> Option<Ordering>
fn partial_cmp(&self, other: &ValueKind) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Unparse<_L, _Value> for ValueKind
impl<'a, _L: Copy + Into<&'a Language<_Value>>, _Value: NestedValue + 'a> Unparse<_L, _Value> for ValueKind
impl Domain for ValueKind
impl Eq for ValueKind
impl StructuralEq for ValueKind
impl StructuralPartialEq for ValueKind
Auto Trait Implementations
impl RefUnwindSafe for ValueKind
impl Send for ValueKind
impl Sync for ValueKind
impl Unpin for ValueKind
impl UnwindSafe for ValueKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more