Struct thrift::protocol::TCompactOutputProtocol
source · pub struct TCompactOutputProtocol<T>where
T: TWriteTransport,{ /* private fields */ }
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();
Implementations§
source§impl<T> TCompactOutputProtocol<T>where
T: TWriteTransport,
impl<T> TCompactOutputProtocol<T>where
T: TWriteTransport,
sourcepub fn new(transport: T) -> TCompactOutputProtocol<T>
pub fn new(transport: T) -> TCompactOutputProtocol<T>
Create a TCompactOutputProtocol
that writes bytes to transport
.
Trait Implementations§
source§impl<T> Debug for TCompactOutputProtocol<T>where
T: TWriteTransport + Debug,
impl<T> Debug for TCompactOutputProtocol<T>where
T: TWriteTransport + Debug,
source§impl<T> TOutputProtocol for TCompactOutputProtocol<T>where
T: TWriteTransport,
impl<T> TOutputProtocol for TCompactOutputProtocol<T>where
T: TWriteTransport,
source§fn write_message_begin(&mut self, identifier: &TMessageIdentifier) -> Result<()>
fn write_message_begin(&mut self, identifier: &TMessageIdentifier) -> Result<()>
Write the beginning of a Thrift message.
source§fn write_message_end(&mut self) -> Result<()>
fn write_message_end(&mut self) -> Result<()>
Write the end of a Thrift message.
source§fn write_struct_begin(&mut self, _: &TStructIdentifier) -> Result<()>
fn write_struct_begin(&mut self, _: &TStructIdentifier) -> Result<()>
Write the beginning of a Thrift struct.
source§fn write_struct_end(&mut self) -> Result<()>
fn write_struct_end(&mut self) -> Result<()>
Write the end of a Thrift struct.
source§fn write_field_begin(&mut self, identifier: &TFieldIdentifier) -> Result<()>
fn write_field_begin(&mut self, identifier: &TFieldIdentifier) -> Result<()>
Write the beginning of a Thrift field.
source§fn write_field_end(&mut self) -> Result<()>
fn write_field_end(&mut self) -> Result<()>
Write the end of a Thrift field.
source§fn write_field_stop(&mut self) -> Result<()>
fn write_field_stop(&mut self) -> Result<()>
Write a STOP field indicating that all the fields in a struct have been
written. Read more
source§fn write_list_begin(&mut self, identifier: &TListIdentifier) -> Result<()>
fn write_list_begin(&mut self, identifier: &TListIdentifier) -> Result<()>
Write the beginning of a list.
source§fn write_list_end(&mut self) -> Result<()>
fn write_list_end(&mut self) -> Result<()>
Write the end of a list.
source§fn write_set_begin(&mut self, identifier: &TSetIdentifier) -> Result<()>
fn write_set_begin(&mut self, identifier: &TSetIdentifier) -> Result<()>
Write the beginning of a set.
source§fn write_set_end(&mut self) -> Result<()>
fn write_set_end(&mut self) -> Result<()>
Write the end of a set.
source§fn write_map_begin(&mut self, identifier: &TMapIdentifier) -> Result<()>
fn write_map_begin(&mut self, identifier: &TMapIdentifier) -> Result<()>
Write the beginning of a map.
source§fn write_map_end(&mut self) -> Result<()>
fn write_map_end(&mut self) -> Result<()>
Write the end of a map.