[][src]Struct vesc_comm::responses::FwVersion

pub struct FwVersion {
    pub major: u8,
    pub minor: u8,
    pub hw: [u8; 10],
    pub uuid: [u8; 12],
}

Response to get_fw_version()

Fields

major: u8

Major version

minor: u8

Minor version

hw: [u8; 10]

Hardware version

uuid: [u8; 12]

96 bit ID of MCU

Trait Implementations

impl Debug for FwVersion[src]

Auto Trait Implementations

impl Send for FwVersion

impl Sync for FwVersion

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self