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,
impl<T> TCompactOutputProtocol<T>where
T: TWriteTransport,
pub fn new(transport: T) -> TCompactOutputProtocol<T>
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,
impl<T> Debug for TCompactOutputProtocol<T>where
T: Debug + TWriteTransport,
§impl<T> TOutputProtocol for TCompactOutputProtocol<T>where
T: TWriteTransport,
impl<T> TOutputProtocol for TCompactOutputProtocol<T>where
T: TWriteTransport,
§fn write_message_begin(
&mut self,
identifier: &TMessageIdentifier,
) -> Result<(), Error>
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>
fn write_message_end(&mut self) -> Result<(), Error>
Write the end of a Thrift message.
§fn write_struct_begin(&mut self, _: &TStructIdentifier) -> Result<(), Error>
fn write_struct_begin(&mut self, _: &TStructIdentifier) -> Result<(), Error>
Write the beginning of a Thrift struct.
§fn write_struct_end(&mut self) -> Result<(), Error>
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>
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>
fn write_field_end(&mut self) -> Result<(), Error>
Write the end of a Thrift field.
§fn write_field_stop(&mut self) -> Result<(), Error>
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>
fn write_bool(&mut self, b: bool) -> Result<(), Error>
Write a bool.
§fn write_bytes(&mut self, b: &[u8]) -> Result<(), Error>
fn write_bytes(&mut self, b: &[u8]) -> Result<(), Error>
Write a fixed-length byte array.
§fn write_double(&mut self, d: f64) -> Result<(), Error>
fn write_double(&mut self, d: f64) -> Result<(), Error>
Write a 64-bit float.
§fn write_string(&mut self, s: &str) -> Result<(), Error>
fn write_string(&mut self, s: &str) -> Result<(), Error>
Write a fixed-length string.
§fn write_list_begin(
&mut self,
identifier: &TListIdentifier,
) -> Result<(), Error>
fn write_list_begin( &mut self, identifier: &TListIdentifier, ) -> Result<(), Error>
Write the beginning of a list.
§fn write_list_end(&mut self) -> Result<(), Error>
fn write_list_end(&mut self) -> Result<(), Error>
Write the end of a list.
§fn write_set_begin(&mut self, identifier: &TSetIdentifier) -> Result<(), Error>
fn write_set_begin(&mut self, identifier: &TSetIdentifier) -> Result<(), Error>
Write the beginning of a set.
§fn write_set_end(&mut self) -> Result<(), Error>
fn write_set_end(&mut self) -> Result<(), Error>
Write the end of a set.
§fn write_map_begin(&mut self, identifier: &TMapIdentifier) -> Result<(), Error>
fn write_map_begin(&mut self, identifier: &TMapIdentifier) -> Result<(), Error>
Write the beginning of a map.
§fn write_map_end(&mut self) -> Result<(), Error>
fn write_map_end(&mut self) -> Result<(), Error>
Write the end of a map.
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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