[][src]Struct thrift::protocol::TMapIdentifier

pub struct TMapIdentifier {
    pub key_type: Option<TType>,
    pub value_type: Option<TType>,
    pub size: i32,
}

Thrift map identifier.

Fields

key_type: Option<TType>

Map key type.

value_type: Option<TType>

Map value type.

size: i32

Number of entries in the map.

Methods

impl TMapIdentifier[src]

pub fn new<K, V>(key_type: K, value_type: V, size: i32) -> TMapIdentifier where
    K: Into<Option<TType>>,
    V: Into<Option<TType>>, 
[src]

Create a TMapIdentifier for a map with size entries of type key_type -> value_type.

Trait Implementations

impl Clone for TMapIdentifier[src]

impl Eq for TMapIdentifier[src]

impl PartialEq<TMapIdentifier> for TMapIdentifier[src]

impl Debug for TMapIdentifier[src]

impl StructuralPartialEq for TMapIdentifier[src]

impl StructuralEq for TMapIdentifier[src]

Auto Trait Implementations

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