pub trait Ff400MessageParse<T> {
// Required method
fn parse_message(params: &mut T, message: u32) -> bool;
}Expand description
Deserializer for messages from Fireface 400.
Required Methods§
Sourcefn parse_message(params: &mut T, message: u32) -> bool
fn parse_message(params: &mut T, message: u32) -> bool
Return false if no event is found. If found, deserialize parameters and return true.
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.