pub trait Packet {
// Required method
fn get_code() -> u8;
}Expand description
Trait for packet type identification
All packet types must implement this trait to provide their unique identifier as defined by the McuBoot protocol specification.
Required Methods§
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.