Trait Message

Source
pub trait Message<'a>:
    Default
    + Packable
    + Unpackable<'a, Error = Error>
    + FieldPackHelper<'a, message<Self>>
    + FieldUnpackHelper<'a, message<Self>>
    + 'a
where <Self as Unpackable<'a>>::Error: Into<Error>, Error: From<Self::Error>,
{ }
Expand description

A protocol buffers messsage.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Message<'_> for Error