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,
}Expand description
Values returned by Read Local Version Information command.
Fields§
§status: Status<VS>Did the command fail, and if so, how?
hci_version: u8The version information of the HCI layer.
See the Bluetooth Assigned Numbers.
hci_revision: u16Revision of the Current HCI in the BR/EDR Controller. This value is implementation dependent.
lmp_version: u8§manufacturer_name: u16Manufacturer Name of the BR/EDR Controller. See Bluetooth Assigned Numbers
lmp_subversion: u16Trait Implementations§
Source§impl<VS: Clone> Clone for LocalVersionInfo<VS>
impl<VS: Clone> Clone for LocalVersionInfo<VS>
Source§fn clone(&self) -> LocalVersionInfo<VS>
fn clone(&self) -> LocalVersionInfo<VS>
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<VS: Debug> Debug for LocalVersionInfo<VS>
impl<VS: Debug> Debug for LocalVersionInfo<VS>
impl<VS: Copy> Copy for LocalVersionInfo<VS>
Auto Trait Implementations§
impl<VS> Freeze for LocalVersionInfo<VS>where
VS: Freeze,
impl<VS> RefUnwindSafe for LocalVersionInfo<VS>where
VS: RefUnwindSafe,
impl<VS> Send for LocalVersionInfo<VS>where
VS: Send,
impl<VS> Sync for LocalVersionInfo<VS>where
VS: Sync,
impl<VS> Unpin for LocalVersionInfo<VS>where
VS: Unpin,
impl<VS> UnwindSafe for LocalVersionInfo<VS>where
VS: UnwindSafe,
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