pub struct RoleChange { /* private fields */ }Implementations§
Source§impl RoleChange
impl RoleChange
pub fn parse(bytes: &[u8]) -> Result<Self, Error>
pub fn get_bd_addr(&self) -> Address
pub fn get_event_code(&self) -> EventCode
pub fn get_new_role(&self) -> Role
pub fn get_status(&self) -> ErrorCode
pub fn get_size(&self) -> usize
Trait Implementations§
Source§impl Clone for RoleChange
impl Clone for RoleChange
Source§fn clone(&self) -> RoleChange
fn clone(&self) -> RoleChange
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 RoleChange
impl Debug for RoleChange
Source§impl From<RoleChange> for Bytes
impl From<RoleChange> for Bytes
Source§fn from(packet: RoleChange) -> Self
fn from(packet: RoleChange) -> Self
Converts to this type from the input type.
Source§impl From<RoleChange> for Event
impl From<RoleChange> for Event
Source§fn from(packet: RoleChange) -> Event
fn from(packet: RoleChange) -> Event
Converts to this type from the input type.
Source§impl From<RoleChange> for Vec<u8>
impl From<RoleChange> for Vec<u8>
Source§fn from(packet: RoleChange) -> Self
fn from(packet: RoleChange) -> Self
Converts to this type from the input type.
Source§impl From<RoleChangeBuilder> for RoleChange
impl From<RoleChangeBuilder> for RoleChange
Source§fn from(builder: RoleChangeBuilder) -> RoleChange
fn from(builder: RoleChangeBuilder) -> RoleChange
Converts to this type from the input type.
Source§impl Packet for RoleChange
impl Packet for RoleChange
Source§impl PartialEq for RoleChange
impl PartialEq for RoleChange
Source§impl TryFrom<Event> for RoleChange
impl TryFrom<Event> for RoleChange
impl Eq for RoleChange
impl StructuralPartialEq for RoleChange
Auto Trait Implementations§
impl !Freeze for RoleChange
impl RefUnwindSafe for RoleChange
impl Send for RoleChange
impl Sync for RoleChange
impl Unpin for RoleChange
impl UnwindSafe for RoleChange
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more