pub struct ReadBdAddr<VS> {
pub status: Status<VS>,
pub bd_addr: BdAddr,
}Expand description
Values returned by the Read BD ADDR command.
Fields§
§status: Status<VS>Did the command fail, and if so, how?
bd_addr: BdAddrAddress of the device.
Trait Implementations§
Source§impl<VS: Clone> Clone for ReadBdAddr<VS>
impl<VS: Clone> Clone for ReadBdAddr<VS>
Source§fn clone(&self) -> ReadBdAddr<VS>
fn clone(&self) -> ReadBdAddr<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 ReadBdAddr<VS>
impl<VS: Debug> Debug for ReadBdAddr<VS>
impl<VS: Copy> Copy for ReadBdAddr<VS>
Auto Trait Implementations§
impl<VS> Freeze for ReadBdAddr<VS>where
VS: Freeze,
impl<VS> RefUnwindSafe for ReadBdAddr<VS>where
VS: RefUnwindSafe,
impl<VS> Send for ReadBdAddr<VS>where
VS: Send,
impl<VS> Sync for ReadBdAddr<VS>where
VS: Sync,
impl<VS> Unpin for ReadBdAddr<VS>where
VS: Unpin,
impl<VS> UnwindSafe for ReadBdAddr<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