pub struct LocalVersionInfo {
pub status: Status,
pub hci_version: u8,
pub hci_revision: u16,
pub lmp_version: u8,
pub manufacturer_name: u16,
pub lmp_subversion: u16,
}
Expand description
Values returned by Read Local Version Information command.
Fields§
§status: Status
Did the command fail, and if so, how?
hci_version: u8
The version information of the HCI layer.
See the Bluetooth Assigned Numbers.
hci_revision: u16
Revision of the Current HCI in the BR/EDR Controller. This value is implementation dependent.
lmp_version: u8
§manufacturer_name: u16
Manufacturer Name of the BR/EDR Controller. See Bluetooth Assigned Numbers
lmp_subversion: u16
Trait Implementations§
Source§impl Clone for LocalVersionInfo
impl Clone for LocalVersionInfo
Source§fn clone(&self) -> LocalVersionInfo
fn clone(&self) -> LocalVersionInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LocalVersionInfo
impl Debug for LocalVersionInfo
impl Copy for LocalVersionInfo
Auto Trait Implementations§
impl Freeze for LocalVersionInfo
impl RefUnwindSafe for LocalVersionInfo
impl Send for LocalVersionInfo
impl Sync for LocalVersionInfo
impl Unpin for LocalVersionInfo
impl UnwindSafe for LocalVersionInfo
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