pub trait CanDecodeMut<Strategy, Value>: HasDecodeBufferType + HasErrorType {
// Required method
fn decode_mut(
&self,
buffer: &mut Self::DecodeBuffer<'_>,
) -> Result<Value, Self::Error>;
}Required Methods§
fn decode_mut( &self, buffer: &mut Self::DecodeBuffer<'_>, ) -> Result<Value, Self::Error>
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.