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