pub trait FirmwareVersion: PartialEq + AsRef<[u8]> + Sized + Debug + Clone {
    fn from_slice(data: &[u8]) -> Result<Self, ()>;
}
Expand description

Type representing the firmware version

Required Methods

Create an instance of the version based on a byte slice

Implementations on Foreign Types

Implementors