Struct TCompactInputProtocol

Source
pub struct TCompactInputProtocol { /* private fields */ }
Expand description

Reads messages encoded in the Thrift compact protocol.

Implementations§

Trait Implementations§

Source§

impl TInputProtocol for TCompactInputProtocol

Source§

fn read_message_begin(&mut self) -> Result<TMessageIdentifier>

Read the beginning of a Thrift message from the wire.
Source§

fn read_message_end(&mut self) -> Result<()>

Read the end of a Thrift message from the wire.
Source§

fn read_struct_begin(&mut self) -> Result<Option<TStructIdentifier>>

Read the beginning of a Thrift struct from the wire.
Source§

fn read_struct_end(&mut self) -> Result<()>

Read the end of a Thrift struct from the wire.
Source§

fn read_field_begin(&mut self) -> Result<TFieldIdentifier>

Read the beginning of a Thrift struct field from the wire.
Source§

fn read_field_end(&mut self) -> Result<()>

Read the end of a Thrift struct field from the wire.
Source§

fn read_bool(&mut self) -> Result<bool>

Read a bool from the wire.
Source§

fn read_bytes(&mut self) -> Result<Vec<u8>>

Read a fixed-length byte array from the wire.
Source§

fn read_i8(&mut self) -> Result<i8>

Read a word from the wire.
Source§

fn read_i16(&mut self) -> Result<i16>

Read a 16-bit signed integer from the wire.
Source§

fn read_i32(&mut self) -> Result<i32>

Read a 32-bit signed integer from the wire.
Source§

fn read_i64(&mut self) -> Result<i64>

Read a 64-bit signed integer from the wire.
Source§

fn read_double(&mut self) -> Result<f64>

Read a 64-bit float from the wire.
Source§

fn read_string(&mut self) -> Result<String>

Read a fixed-length string (not null terminated) from the wire.
Source§

fn read_list_begin(&mut self) -> Result<TListIdentifier>

Read the beginning of a list from the wire.
Source§

fn read_list_end(&mut self) -> Result<()>

Read the end of a list from the wire.
Source§

fn read_set_begin(&mut self) -> Result<TSetIdentifier>

Read the beginning of a set from the wire.
Source§

fn read_set_end(&mut self) -> Result<()>

Read the end of a set from the wire.
Source§

fn read_map_begin(&mut self) -> Result<TMapIdentifier>

Read the beginning of a map from the wire.
Source§

fn read_map_end(&mut self) -> Result<()>

Read the end of a map from the wire.
Source§

fn read_byte(&mut self) -> Result<u8>

Read an unsigned byte from the wire. Read more
Source§

fn skip(&mut self, field_type: TType) -> Result<()>

Skip a field of type field_type recursively until MAXIMUM_SKIP_DEPTH is reached.
Source§

fn skip_till_depth( &mut self, field_type: TType, remaining_depth: i8, ) -> Result<()>

Skip a field of type field_type recursively for remaining_depth levels.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Err>