pub trait MessageExt: Send + Sync {
// Required method
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>
where Self: Default;
}Required Methods§
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".