[][src]Enum tree_buf::internal::branch::ArrayTypeId

pub enum ArrayTypeId {
    Void,
    Tuple2,
    Tuple3,
    Tuple4,
    Tuple5,
    Tuple6,
    Tuple7,
    Tuple8,
    TupleN,
    Obj0,
    Obj1,
    Obj2,
    Obj3,
    Obj4,
    Obj5,
    Obj6,
    Obj7,
    Obj8,
    ObjN,
    Nullable,
    ArrayVar,
    Boolean,
    IntSimple16,
    IntPrefixVar,
    F32,
    F64,
    Utf8,
    DoubleGorilla,
    Map,
    Enum,
}

Variants

Void
Tuple2
Tuple3
Tuple4
Tuple5
Tuple6
Tuple7
Tuple8
TupleN
Obj0
Obj1
Obj2
Obj3
Obj4
Obj5
Obj6
Obj7
Obj8
ObjN
Nullable
ArrayVar
Boolean
IntSimple16
IntPrefixVar
F32
F64
Utf8
DoubleGorilla
Map
Enum

Trait Implementations

impl Clone for ArrayTypeId[src]

impl Copy for ArrayTypeId[src]

impl Debug for ArrayTypeId[src]

impl Eq for ArrayTypeId[src]

impl From<ArrayTypeId> for u8[src]

impl PartialEq<ArrayTypeId> for ArrayTypeId[src]

impl StructuralEq for ArrayTypeId[src]

impl StructuralPartialEq for ArrayTypeId[src]

impl TryFrom<u8> for ArrayTypeId[src]

type Error = ReadError

The type returned in the event of a conversion error.

impl TypeId for ArrayTypeId[src]

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, 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.