Enum simd_json::StaticNode[][src]

pub enum StaticNode {
    I64(i64),
    U64(u64),
    F64(f64),
    Bool(bool),
    Null,
}

Static tape node

Variants

I64(i64)

A signed 64 bit integer.

U64(u64)

An unsigned 64 bit integer.

F64(f64)

A floating point value

Bool(bool)

A boolean value

Null

The null value

Trait Implementations

impl Clone for StaticNode[src]

impl Copy for StaticNode[src]

impl Debug for StaticNode[src]

impl Default for StaticNode[src]

impl<'v> Display for StaticNode[src]

impl From<()> for StaticNode[src]

impl<'value> From<StaticNode> for Value<'value>[src]

impl From<StaticNode> for Value[src]

impl From<bool> for StaticNode[src]

impl From<f32> for StaticNode[src]

impl From<f64> for StaticNode[src]

impl From<i16> for StaticNode[src]

impl From<i32> for StaticNode[src]

impl From<i64> for StaticNode[src]

impl From<i8> for StaticNode[src]

impl From<u16> for StaticNode[src]

impl From<u32> for StaticNode[src]

impl From<u64> for StaticNode[src]

impl From<u8> for StaticNode[src]

impl From<usize> for StaticNode[src]

impl<'_> Index<&'_ str> for StaticNode[src]

type Output = ()

The returned type after indexing.

impl Index<usize> for StaticNode[src]

type Output = ()

The returned type after indexing.

impl<'_> IndexMut<&'_ str> for StaticNode[src]

impl IndexMut<usize> for StaticNode[src]

impl<'_> PartialEq<&'_ str> for StaticNode[src]

impl PartialEq<()> for StaticNode[src]

impl<'a> PartialEq<StaticNode> for StaticNode[src]

impl PartialEq<String> for StaticNode[src]

impl PartialEq<bool> for StaticNode[src]

impl PartialEq<f32> for StaticNode[src]

impl PartialEq<f64> for StaticNode[src]

impl PartialEq<i128> for StaticNode[src]

impl PartialEq<i16> for StaticNode[src]

impl PartialEq<i32> for StaticNode[src]

impl PartialEq<i64> for StaticNode[src]

impl PartialEq<i8> for StaticNode[src]

impl PartialEq<str> for StaticNode[src]

impl PartialEq<u128> for StaticNode[src]

impl PartialEq<u16> for StaticNode[src]

impl PartialEq<u32> for StaticNode[src]

impl PartialEq<u64> for StaticNode[src]

impl PartialEq<u8> for StaticNode[src]

impl PartialEq<usize> for StaticNode[src]

impl Value for StaticNode[src]

impl ValueAccess for StaticNode[src]

type Target = StaticNode

The target for nested lookups

type Key = String

The type for Objects

type Array = Vec<StaticNode, Global>

The array structure

type Object = HashMap<String, StaticNode, RandomState>

The object structure

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.