pub enum FwVersion {
Fg {
major1: u32,
major2: u32,
minor: u32,
rev_patch1: u32,
rev_patch2: u32,
},
Mcu {
major: u32,
minor: u32,
patch: u32,
},
}Expand description
Firmware version.
Variants§
Trait Implementations§
impl Copy for FwVersion
impl Eq for FwVersion
impl StructuralPartialEq for FwVersion
Auto Trait Implementations§
impl Freeze for FwVersion
impl RefUnwindSafe for FwVersion
impl Send for FwVersion
impl Sync for FwVersion
impl Unpin for FwVersion
impl UnwindSafe for FwVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more