pub trait CanDecoder {
// Required method
fn decode(&self, buf: &[u8]) -> Option<CanFrame>;
}Expand description
Decodes a byte buffer into a CAN frame.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".