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.

Implementations on Foreign Types

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

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for bool
[src]

google.protobuf.BoolValue

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for u32
[src]

google.protobuf.UInt32Value

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for u64
[src]

google.protobuf.UInt64Value

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for i32
[src]

google.protobuf.Int32Value

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for i64
[src]

google.protobuf.Int64Value

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for f32
[src]

google.protobuf.FloatValue

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for f64
[src]

google.protobuf.DoubleValue

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for String
[src]

google.protobuf.StringValue

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for Vec<u8>
[src]

google.protobuf.BytesValue

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl Message for ()
[src]

google.protobuf.Empty

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

Implementors