Enum simd_json::value::ExtendedValueType
source · 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§
source§impl Clone for ExtendedValueType
impl Clone for ExtendedValueType
source§fn clone(&self) -> ExtendedValueType
fn clone(&self) -> ExtendedValueType
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExtendedValueType
impl Debug for ExtendedValueType
source§impl Default for ExtendedValueType
impl Default for ExtendedValueType
source§fn default() -> ExtendedValueType
fn default() -> ExtendedValueType
Returns the “default value” for a type. Read more
source§impl Display for ExtendedValueType
impl Display for ExtendedValueType
source§impl PartialEq<ExtendedValueType> for ExtendedValueType
impl PartialEq<ExtendedValueType> for ExtendedValueType
source§fn eq(&self, other: &ExtendedValueType) -> bool
fn eq(&self, other: &ExtendedValueType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.