Struct TCompactOutputProtocol

pub struct TCompactOutputProtocol<T>
where T: TWriteTransport,
{ last_write_field_id: i16, write_field_id_stack: Vec<i16>, pending_write_bool_field_identifier: Option<TFieldIdentifier>, transport: T, }
Expand description

Write messages using the Thrift compact protocol.

§Examples

Create and use a TCompactOutputProtocol.

use thrift::protocol::{TCompactOutputProtocol, TOutputProtocol};
use thrift::transport::TTcpChannel;

let mut channel = TTcpChannel::new();
channel.open("localhost:9090").unwrap();

let mut protocol = TCompactOutputProtocol::new(channel);

protocol.write_bool(true).unwrap();
protocol.write_string("test_string").unwrap();

Fields§

§last_write_field_id: i16§write_field_id_stack: Vec<i16>§pending_write_bool_field_identifier: Option<TFieldIdentifier>§transport: T

Implementations§

§

impl<T> TCompactOutputProtocol<T>
where T: TWriteTransport,

pub fn new(transport: T) -> TCompactOutputProtocol<T>

Create a TCompactOutputProtocol that writes bytes to transport.

Trait Implementations§

§

impl<T> Debug for TCompactOutputProtocol<T>
where T: Debug + TWriteTransport,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<T> TOutputProtocol for TCompactOutputProtocol<T>
where T: TWriteTransport,

§

fn write_message_begin( &mut self, identifier: &TMessageIdentifier, ) -> Result<(), Error>

Write the beginning of a Thrift message.
§

fn write_message_end(&mut self) -> Result<(), Error>

Write the end of a Thrift message.
§

fn write_struct_begin(&mut self, _: &TStructIdentifier) -> Result<(), Error>

Write the beginning of a Thrift struct.
§

fn write_struct_end(&mut self) -> Result<(), Error>

Write the end of a Thrift struct.
§

fn write_field_begin( &mut self, identifier: &TFieldIdentifier, ) -> Result<(), Error>

Write the beginning of a Thrift field.
§

fn write_field_end(&mut self) -> Result<(), Error>

Write the end of a Thrift field.
§

fn write_field_stop(&mut self) -> Result<(), Error>

Write a STOP field indicating that all the fields in a struct have been written.
§

fn write_bool(&mut self, b: bool) -> Result<(), Error>

Write a bool.
§

fn write_bytes(&mut self, b: &[u8]) -> Result<(), Error>

Write a fixed-length byte array.
§

fn write_i8(&mut self, i: i8) -> Result<(), Error>

Write an 8-bit signed integer.
§

fn write_i16(&mut self, i: i16) -> Result<(), Error>

Write a 16-bit signed integer.
§

fn write_i32(&mut self, i: i32) -> Result<(), Error>

Write a 32-bit signed integer.
§

fn write_i64(&mut self, i: i64) -> Result<(), Error>

Write a 64-bit signed integer.
§

fn write_double(&mut self, d: f64) -> Result<(), Error>

Write a 64-bit float.
§

fn write_string(&mut self, s: &str) -> Result<(), Error>

Write a fixed-length string.
§

fn write_list_begin( &mut self, identifier: &TListIdentifier, ) -> Result<(), Error>

Write the beginning of a list.
§

fn write_list_end(&mut self) -> Result<(), Error>

Write the end of a list.
§

fn write_set_begin(&mut self, identifier: &TSetIdentifier) -> Result<(), Error>

Write the beginning of a set.
§

fn write_set_end(&mut self) -> Result<(), Error>

Write the end of a set.
§

fn write_map_begin(&mut self, identifier: &TMapIdentifier) -> Result<(), Error>

Write the beginning of a map.
§

fn write_map_end(&mut self) -> Result<(), Error>

Write the end of a map.
§

fn flush(&mut self) -> Result<(), Error>

Flush buffered bytes to the underlying transport.
§

fn write_byte(&mut self, b: u8) -> Result<(), Error>

Write an unsigned byte. Read more

Auto Trait Implementations§

§

impl<T> Freeze for TCompactOutputProtocol<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for TCompactOutputProtocol<T>
where T: RefUnwindSafe,

§

impl<T> Send for TCompactOutputProtocol<T>
where T: Send,

§

impl<T> Sync for TCompactOutputProtocol<T>
where T: Sync,

§

impl<T> Unpin for TCompactOutputProtocol<T>
where T: Unpin,

§

impl<T> UnwindSafe for TCompactOutputProtocol<T>
where T: UnwindSafe,

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
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.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T