[][src]Enum thrift::protocol::TType

pub enum TType {
    Stop,
    Void,
    Bool,
    I08,
    Double,
    I16,
    I32,
    I64,
    String,
    Utf7,
    Struct,
    Map,
    Set,
    List,
    Utf8,
    Utf16,
}

Thrift struct-field types.

Variants

Stop

Indicates that there are no more serialized fields in this Thrift struct.

Void

Void (()) field.

Bool

Boolean.

I08

Signed 8-bit int.

Double

Double-precision number.

I16

Signed 16-bit int.

I32

Signed 32-bit int.

I64

Signed 64-bit int.

String

UTF-8 string.

Utf7

UTF-7 string. Unsupported.

Struct

Thrift struct.

Map

Map.

Set

Set.

List

List.

Utf8

UTF-8 string.

Utf16

UTF-16 string. Unsupported.

Trait Implementations

impl Clone for TType[src]

impl Copy for TType[src]

impl Eq for TType[src]

impl PartialEq<TType> for TType[src]

impl Display for TType[src]

impl Debug for TType[src]

impl StructuralPartialEq for TType[src]

impl StructuralEq for TType[src]

Auto Trait Implementations

impl Send for TType

impl Sync for TType

impl Unpin for TType

impl UnwindSafe for TType

impl RefUnwindSafe for TType

Blanket Implementations

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

impl<T> From<T> for 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.

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]