pub struct CodedOutputStream<'a> { /* private fields */ }
Expand description

Buffered write with handy utilities

Implementations§

source§

impl<'a> CodedOutputStream<'a>

source

pub fn new(writer: &'a mut dyn Write) -> CodedOutputStream<'a>

Construct from given Write.

CodedOutputStream is buffered even if Write is not

source

pub fn bytes(bytes: &'a mut [u8]) -> CodedOutputStream<'a>

CodedOutputStream which writes directly to bytes.

Attempt to write more than bytes capacity results in error.

source

pub fn vec(vec: &'a mut Vec<u8>) -> CodedOutputStream<'a>

CodedOutputStream which writes directly to Vec<u8>.

Caller should call flush at the end to guarantee vec contains all written data.

source

pub fn check_eof(&self)

Check if EOF is reached.

Panics

If underlying write has no EOF

source

pub fn flush(&mut self) -> ProtobufResult<()>

Flush the buffer to underlying write

source

pub fn write_raw_byte(&mut self, byte: u8) -> ProtobufResult<()>

Write a byte

source

pub fn write_raw_bytes(&mut self, bytes: &[u8]) -> ProtobufResult<()>

Write bytes

source

pub fn write_tag( &mut self, field_number: u32, wire_type: WireType ) -> ProtobufResult<()>

Write a tag

source

pub fn write_raw_varint32(&mut self, value: u32) -> ProtobufResult<()>

Write varint

source

pub fn write_raw_varint64(&mut self, value: u64) -> ProtobufResult<()>

Write varint

source

pub fn write_raw_little_endian32(&mut self, value: u32) -> ProtobufResult<()>

Write 32-bit integer little endian

source

pub fn write_raw_little_endian64(&mut self, value: u64) -> ProtobufResult<()>

Write 64-bit integer little endian

source

pub fn write_float_no_tag(&mut self, value: f32) -> ProtobufResult<()>

Write float

source

pub fn write_double_no_tag(&mut self, value: f64) -> ProtobufResult<()>

Write double

source

pub fn write_float( &mut self, field_number: u32, value: f32 ) -> ProtobufResult<()>

Write float field

source

pub fn write_double( &mut self, field_number: u32, value: f64 ) -> ProtobufResult<()>

Write double field

source

pub fn write_uint64_no_tag(&mut self, value: u64) -> ProtobufResult<()>

Write varint

source

pub fn write_uint32_no_tag(&mut self, value: u32) -> ProtobufResult<()>

Write varint

source

pub fn write_int64_no_tag(&mut self, value: i64) -> ProtobufResult<()>

Write varint

source

pub fn write_int32_no_tag(&mut self, value: i32) -> ProtobufResult<()>

Write varint

source

pub fn write_sint64_no_tag(&mut self, value: i64) -> ProtobufResult<()>

Write zigzag varint

source

pub fn write_sint32_no_tag(&mut self, value: i32) -> ProtobufResult<()>

Write zigzag varint

source

pub fn write_fixed64_no_tag(&mut self, value: u64) -> ProtobufResult<()>

Write fixed64

source

pub fn write_fixed32_no_tag(&mut self, value: u32) -> ProtobufResult<()>

Write fixed32

source

pub fn write_sfixed64_no_tag(&mut self, value: i64) -> ProtobufResult<()>

Write sfixed64

source

pub fn write_sfixed32_no_tag(&mut self, value: i32) -> ProtobufResult<()>

Write sfixed32

source

pub fn write_bool_no_tag(&mut self, value: bool) -> ProtobufResult<()>

Write bool

source

pub fn write_enum_no_tag(&mut self, value: i32) -> ProtobufResult<()>

Write enum

source

pub fn write_enum_obj_no_tag<E>(&mut self, value: E) -> ProtobufResult<()>where E: ProtobufEnum,

Write enum

source

pub fn write_unknown_no_tag( &mut self, unknown: UnknownValueRef<'_> ) -> ProtobufResult<()>

Write unknown value

source

pub fn write_uint64( &mut self, field_number: u32, value: u64 ) -> ProtobufResult<()>

Write uint64 field

source

pub fn write_uint32( &mut self, field_number: u32, value: u32 ) -> ProtobufResult<()>

Write uint32 field

source

pub fn write_int64( &mut self, field_number: u32, value: i64 ) -> ProtobufResult<()>

Write int64 field

source

pub fn write_int32( &mut self, field_number: u32, value: i32 ) -> ProtobufResult<()>

Write int32 field

source

pub fn write_sint64( &mut self, field_number: u32, value: i64 ) -> ProtobufResult<()>

Write sint64 field

source

pub fn write_sint32( &mut self, field_number: u32, value: i32 ) -> ProtobufResult<()>

Write sint32 field

source

pub fn write_fixed64( &mut self, field_number: u32, value: u64 ) -> ProtobufResult<()>

Write fixed64 field

source

pub fn write_fixed32( &mut self, field_number: u32, value: u32 ) -> ProtobufResult<()>

Write fixed32 field

source

pub fn write_sfixed64( &mut self, field_number: u32, value: i64 ) -> ProtobufResult<()>

Write sfixed64 field

source

pub fn write_sfixed32( &mut self, field_number: u32, value: i32 ) -> ProtobufResult<()>

Write sfixed32 field

source

pub fn write_bool( &mut self, field_number: u32, value: bool ) -> ProtobufResult<()>

Write bool field

source

pub fn write_enum( &mut self, field_number: u32, value: i32 ) -> ProtobufResult<()>

Write enum field

source

pub fn write_enum_obj<E>( &mut self, field_number: u32, value: E ) -> ProtobufResult<()>where E: ProtobufEnum,

Write enum field

source

pub fn write_unknown( &mut self, field_number: u32, value: UnknownValueRef<'_> ) -> ProtobufResult<()>

Write unknown field

source

pub fn write_unknown_fields( &mut self, fields: &UnknownFields ) -> ProtobufResult<()>

Write unknown fields

source

pub fn write_bytes_no_tag(&mut self, bytes: &[u8]) -> ProtobufResult<()>

Write bytes

source

pub fn write_string_no_tag(&mut self, s: &str) -> ProtobufResult<()>

Write string

source

pub fn write_message_no_tag<M: Message>( &mut self, msg: &M ) -> ProtobufResult<()>

Write message

source

pub fn write_bytes( &mut self, field_number: u32, bytes: &[u8] ) -> ProtobufResult<()>

Write bytes field

source

pub fn write_string(&mut self, field_number: u32, s: &str) -> ProtobufResult<()>

Write string field

source

pub fn write_message<M: Message>( &mut self, field_number: u32, msg: &M ) -> ProtobufResult<()>

Write message field

Trait Implementations§

source§

impl<'a> Write for CodedOutputStream<'a>

source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Write a buffer into this writer, returning how many bytes were written. Read more
source§

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

Flush this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · source§

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

Attempts to write an entire buffer into this writer. Read more
source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · source§

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

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · source§

fn by_ref(&mut self) -> &mut Selfwhere Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more

Auto Trait Implementations§

§

impl<'a> !RefUnwindSafe for CodedOutputStream<'a>

§

impl<'a> !Send for CodedOutputStream<'a>

§

impl<'a> !Sync for CodedOutputStream<'a>

§

impl<'a> Unpin for CodedOutputStream<'a>

§

impl<'a> !UnwindSafe for CodedOutputStream<'a>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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.