[][src]Trait prost::Message

pub trait Message: Debug + Send + Sync {
    pub fn encoded_len(&self) -> usize;
pub fn clear(&mut self); pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError>
    where
        B: BufMut,
        Self: Sized
, { ... }
pub fn encode_length_delimited<B>(
        &self,
        buf: &mut B
    ) -> Result<(), EncodeError>
    where
        B: BufMut,
        Self: Sized
, { ... }
pub fn decode<B>(buf: B) -> Result<Self, DecodeError>
    where
        B: Buf,
        Self: Default
, { ... }
pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError>
    where
        B: Buf,
        Self: Default
, { ... }
pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError>
    where
        B: Buf,
        Self: Sized
, { ... }
pub fn merge_length_delimited<B>(
        &mut self,
        buf: B
    ) -> Result<(), DecodeError>
    where
        B: Buf,
        Self: Sized
, { ... } }

A Protocol Buffers message.

Required methods

pub fn encoded_len(&self) -> usize[src]

Returns the encoded length of the message without a length delimiter.

pub fn clear(&mut self)[src]

Clears the message, resetting all fields to their default.

Loading content...

Provided methods

pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut,
    Self: Sized
[src]

Encodes the message to a buffer.

An error will be returned if the buffer does not have sufficient capacity.

pub fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
    B: BufMut,
    Self: Sized
[src]

Encodes the message with a length-delimiter to a buffer.

An error will be returned if the buffer does not have sufficient capacity.

pub fn decode<B>(buf: B) -> Result<Self, DecodeError> where
    B: Buf,
    Self: Default
[src]

Decodes an instance of the message from a buffer.

The entire buffer will be consumed.

pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
    B: Buf,
    Self: Default
[src]

Decodes a length-delimited instance of the message from the buffer.

pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf,
    Self: Sized
[src]

Decodes an instance of the message from a buffer, and merges it into self.

The entire buffer will be consumed.

pub fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
    B: Buf,
    Self: Sized
[src]

Decodes a length-delimited instance of the message from buffer, and merges it into self.

Loading content...

Implementations on Foreign Types

impl<M> Message for Box<M> where
    M: Message
[src]

impl Message for bool[src]

google.protobuf.BoolValue

impl Message for u32[src]

google.protobuf.UInt32Value

impl Message for u64[src]

google.protobuf.UInt64Value

impl Message for i32[src]

google.protobuf.Int32Value

impl Message for i64[src]

google.protobuf.Int64Value

impl Message for f32[src]

google.protobuf.FloatValue

impl Message for f64[src]

google.protobuf.DoubleValue

impl Message for String[src]

google.protobuf.StringValue

impl Message for Vec<u8>[src]

google.protobuf.BytesValue

impl Message for Bytes[src]

google.protobuf.BytesValue

impl Message for ()[src]

google.protobuf.Empty

Loading content...

Implementors

Loading content...