Trait prost::Message [] [src]

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

A Protocol Buffers message.

Required Methods

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

Clears the message, resetting all fields to their default.

Provided Methods

Encodes the message to a buffer.

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

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

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

Decodes an instance of the message from a buffer.

The entire buffer will be consumed.

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

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

The entire buffer will be consumed.

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

Implementors