[][src]Enum simd_json::value::tape::StaticNode

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

Static tape node

Variants

I64(i64)

A signed integer.

U64(u64)

An unsigned integer.

F64(f64)

A floating point value

Bool(bool)

A boolean value

Null

The null value

Methods

impl StaticNode[src]

pub fn value_type(&self) -> ValueType[src]

The type of a static value

Trait Implementations

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

impl From<StaticNode> for Value[src]

impl Clone for StaticNode[src]

impl Copy for StaticNode[src]

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

impl Debug for StaticNode[src]

impl<'v> Display for StaticNode[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

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

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

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