[−][src]Struct protobuf::stream::CodedOutputStream
Methods
impl<'a> CodedOutputStream<'a>
[src]
pub fn new(writer: &'a mut dyn Write) -> CodedOutputStream<'a>
[src]
pub fn bytes(bytes: &'a mut [u8]) -> CodedOutputStream<'a>
[src]
CodedOutputStream
which writes directly to bytes.
Attempt to write more than bytes capacity results in error.
pub fn vec(vec: &'a mut Vec<u8>) -> CodedOutputStream<'a>
[src]
CodedOutputStream
which writes directly to Vec<u8>
.
Caller should call flush
at the end to guarantee vec contains
all written data.
pub fn check_eof(&self)
[src]
pub fn flush(&mut self) -> ProtobufResult<()>
[src]
pub fn write_raw_byte(&mut self, byte: u8) -> ProtobufResult<()>
[src]
pub fn write_raw_bytes(&mut self, bytes: &[u8]) -> ProtobufResult<()>
[src]
pub fn write_tag(
&mut self,
field_number: u32,
wire_type: WireType
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
wire_type: WireType
) -> ProtobufResult<()>
pub fn write_raw_varint32(&mut self, value: u32) -> ProtobufResult<()>
[src]
pub fn write_raw_varint64(&mut self, value: u64) -> ProtobufResult<()>
[src]
pub fn write_raw_little_endian32(&mut self, value: u32) -> ProtobufResult<()>
[src]
pub fn write_raw_little_endian64(&mut self, value: u64) -> ProtobufResult<()>
[src]
pub fn write_float_no_tag(&mut self, value: f32) -> ProtobufResult<()>
[src]
pub fn write_double_no_tag(&mut self, value: f64) -> ProtobufResult<()>
[src]
pub fn write_float(
&mut self,
field_number: u32,
value: f32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: f32
) -> ProtobufResult<()>
pub fn write_double(
&mut self,
field_number: u32,
value: f64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: f64
) -> ProtobufResult<()>
pub fn write_uint64_no_tag(&mut self, value: u64) -> ProtobufResult<()>
[src]
pub fn write_uint32_no_tag(&mut self, value: u32) -> ProtobufResult<()>
[src]
pub fn write_int64_no_tag(&mut self, value: i64) -> ProtobufResult<()>
[src]
pub fn write_int32_no_tag(&mut self, value: i32) -> ProtobufResult<()>
[src]
pub fn write_sint64_no_tag(&mut self, value: i64) -> ProtobufResult<()>
[src]
pub fn write_sint32_no_tag(&mut self, value: i32) -> ProtobufResult<()>
[src]
pub fn write_fixed64_no_tag(&mut self, value: u64) -> ProtobufResult<()>
[src]
pub fn write_fixed32_no_tag(&mut self, value: u32) -> ProtobufResult<()>
[src]
pub fn write_sfixed64_no_tag(&mut self, value: i64) -> ProtobufResult<()>
[src]
pub fn write_sfixed32_no_tag(&mut self, value: i32) -> ProtobufResult<()>
[src]
pub fn write_bool_no_tag(&mut self, value: bool) -> ProtobufResult<()>
[src]
pub fn write_enum_no_tag(&mut self, value: i32) -> ProtobufResult<()>
[src]
pub fn write_enum_obj_no_tag<E>(&mut self, value: E) -> ProtobufResult<()> where
E: ProtobufEnum,
[src]
E: ProtobufEnum,
pub fn write_unknown_no_tag(
&mut self,
unknown: UnknownValueRef
) -> ProtobufResult<()>
[src]
&mut self,
unknown: UnknownValueRef
) -> ProtobufResult<()>
pub fn write_uint64(
&mut self,
field_number: u32,
value: u64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: u64
) -> ProtobufResult<()>
pub fn write_uint32(
&mut self,
field_number: u32,
value: u32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: u32
) -> ProtobufResult<()>
pub fn write_int64(
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
pub fn write_int32(
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
pub fn write_sint64(
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
pub fn write_sint32(
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
pub fn write_fixed64(
&mut self,
field_number: u32,
value: u64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: u64
) -> ProtobufResult<()>
pub fn write_fixed32(
&mut self,
field_number: u32,
value: u32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: u32
) -> ProtobufResult<()>
pub fn write_sfixed64(
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i64
) -> ProtobufResult<()>
pub fn write_sfixed32(
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
pub fn write_bool(
&mut self,
field_number: u32,
value: bool
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: bool
) -> ProtobufResult<()>
pub fn write_enum(
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: i32
) -> ProtobufResult<()>
pub fn write_enum_obj<E>(
&mut self,
field_number: u32,
value: E
) -> ProtobufResult<()> where
E: ProtobufEnum,
[src]
&mut self,
field_number: u32,
value: E
) -> ProtobufResult<()> where
E: ProtobufEnum,
pub fn write_unknown(
&mut self,
field_number: u32,
value: UnknownValueRef
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
value: UnknownValueRef
) -> ProtobufResult<()>
pub fn write_unknown_fields(
&mut self,
fields: &UnknownFields
) -> ProtobufResult<()>
[src]
&mut self,
fields: &UnknownFields
) -> ProtobufResult<()>
pub fn write_bytes_no_tag(&mut self, bytes: &[u8]) -> ProtobufResult<()>
[src]
pub fn write_string_no_tag(&mut self, s: &str) -> ProtobufResult<()>
[src]
pub fn write_message_no_tag<M: Message>(
&mut self,
msg: &M
) -> ProtobufResult<()>
[src]
&mut self,
msg: &M
) -> ProtobufResult<()>
pub fn write_bytes(
&mut self,
field_number: u32,
bytes: &[u8]
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
bytes: &[u8]
) -> ProtobufResult<()>
pub fn write_string(&mut self, field_number: u32, s: &str) -> ProtobufResult<()>
[src]
pub fn write_message<M: Message>(
&mut self,
field_number: u32,
msg: &M
) -> ProtobufResult<()>
[src]
&mut self,
field_number: u32,
msg: &M
) -> ProtobufResult<()>
Auto Trait Implementations
impl<'a> !Send for CodedOutputStream<'a>
impl<'a> Unpin for CodedOutputStream<'a>
impl<'a> !Sync for CodedOutputStream<'a>
impl<'a> !UnwindSafe for CodedOutputStream<'a>
impl<'a> !RefUnwindSafe for CodedOutputStream<'a>
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From<T> for T
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,