pub trait FieldDecode<'a>: Sized {
// Required method
fn decode(field: FieldView<'a>) -> Option<Self>;
}Expand description
Decodes a typed value from an encoded message, array, or map field.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".