Struct bluetooth_hci::event::command::LocalVersionInfo[][src]

pub struct LocalVersionInfo<VS> {
    pub status: Status<VS>,
    pub hci_version: u8,
    pub hci_revision: u16,
    pub lmp_version: u8,
    pub manufacturer_name: u16,
    pub lmp_subversion: u16,
}

Values returned by Read Local Version Information command.

Fields

Did the command fail, and if so, how?

The version information of the HCI layer.

See the Bluetooth Assigned Numbers.

Revision of the Current HCI in the BR/EDR Controller. This value is implementation dependent.

Version of the Current LMP or PAL in the Controller.

Manufacturer Name of the BR/EDR Controller. See Bluetooth Assigned Numbers

Subversion of the Current LMP or PAL in the Controller. This value is implementation dependent.

Trait Implementations

impl<VS: Copy> Copy for LocalVersionInfo<VS>
[src]

impl<VS: Clone> Clone for LocalVersionInfo<VS>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<VS: Debug> Debug for LocalVersionInfo<VS>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<VS> Send for LocalVersionInfo<VS> where
    VS: Send

impl<VS> Sync for LocalVersionInfo<VS> where
    VS: Sync