#[repr(C)]pub struct otPlatBleDeviceAddr {
pub mAddrType: u8,
pub mAddr: [u8; 6],
}Expand description
This structure represents BLE Device Address.
Fields§
§mAddrType: u8< Bluetooth device address type.
mAddr: [u8; 6]< An 48-bit address of Bluetooth device in LSB format.
Trait Implementations§
Source§impl Clone for otPlatBleDeviceAddr
impl Clone for otPlatBleDeviceAddr
Source§fn clone(&self) -> otPlatBleDeviceAddr
fn clone(&self) -> otPlatBleDeviceAddr
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 Debug for otPlatBleDeviceAddr
impl Debug for otPlatBleDeviceAddr
impl Copy for otPlatBleDeviceAddr
Auto Trait Implementations§
impl Freeze for otPlatBleDeviceAddr
impl RefUnwindSafe for otPlatBleDeviceAddr
impl Send for otPlatBleDeviceAddr
impl Sync for otPlatBleDeviceAddr
impl Unpin for otPlatBleDeviceAddr
impl UnwindSafe for otPlatBleDeviceAddr
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