pub enum ExtendedValueType {
I32,
I16,
I8,
U32,
U16,
U8,
Usize,
F32,
Char,
None,
}
Expand description
Extended types that have no native representation in JSON
Variants
I32
A 32 bit signed integer value
I16
A 16 bit signed integer value
I8
A 8 bit signed integer value
U32
A 32 bit unsigned integer value
U16
A 16 bit unsigned integer value
U8
A 8 bit unsigned integer value
Usize
A useize value
F32
A 32 bit floating point value
Char
A single utf-8 character
None
Not a value at all
Trait Implementations
sourceimpl Clone for ExtendedValueType
impl Clone for ExtendedValueType
sourcefn clone(&self) -> ExtendedValueType
fn clone(&self) -> ExtendedValueType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ExtendedValueType
impl Debug for ExtendedValueType
sourceimpl Default for ExtendedValueType
impl Default for ExtendedValueType
sourcefn default() -> ExtendedValueType
fn default() -> ExtendedValueType
Returns the “default value” for a type. Read more
sourceimpl Display for ExtendedValueType
impl Display for ExtendedValueType
impl Copy for ExtendedValueType
impl StructuralPartialEq for ExtendedValueType
Auto Trait Implementations
impl RefUnwindSafe for ExtendedValueType
impl Send for ExtendedValueType
impl Sync for ExtendedValueType
impl Unpin for ExtendedValueType
impl UnwindSafe for ExtendedValueType
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