Struct midi_msg::IdentityReply[][src]

pub struct IdentityReply {
    pub id: ManufacturerID,
    pub family: u16,
    pub family_member: u16,
    pub software_revision: (u8, u8, u8, u8),
}

A response to UniversalNonRealTimeMsg::IdentityRequest, meant to indicate the type of device that this message is sent from. Used by UniversalNonRealTimeMsg::IdentityReply.

Fields

id: ManufacturerIDfamily: u16family_member: u16software_revision: (u8, u8, u8, u8)

Four values, 0-127, sent in order provided

Trait Implementations

impl Clone for IdentityReply[src]

impl Copy for IdentityReply[src]

impl Debug for IdentityReply[src]

impl PartialEq<IdentityReply> for IdentityReply[src]

impl StructuralPartialEq for IdentityReply[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.