Struct svm40::Version[][src]

pub struct Version {
    pub sw_major_ver: u8,
    pub sw_minor_ver: u8,
    pub debug_state: bool,
    pub hw_major_ver: u8,
    pub hw_minor_ver: u8,
    pub protocol_major_ver: u8,
    pub protocol_minor_ver: u8,
}

Version information structure

Fields

sw_major_ver: u8

Major firmware version

sw_minor_ver: u8

Minor firmware version

debug_state: bool

Shows if the device is on debug state

hw_major_ver: u8

Major hardware version

hw_minor_ver: u8

Minor hardware version

protocol_major_ver: u8

Major protocol version

protocol_minor_ver: u8

Minor protocol version

Trait Implementations

impl Debug for Version[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.