Struct stm32wb_hci::event::command::LocalVersionInfo
source · 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 copy 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> 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