pub trait FixDecode: Sized {
// Required method
fn decode(tag: Tag, bytes: &[u8]) -> Result<Self, ConversionError>;
}Expand description
A value that can be parsed from a FIX field value.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".