pub struct LeLongTermKeyRequestNegativeReplyComplete { /* private fields */ }Implementations§
Source§impl LeLongTermKeyRequestNegativeReplyComplete
impl LeLongTermKeyRequestNegativeReplyComplete
pub fn parse(bytes: &[u8]) -> Result<Self, Error>
pub fn get_command_op_code(&self) -> OpCode
pub fn get_connection_handle(&self) -> u16
pub fn get_event_code(&self) -> EventCode
pub fn get_num_hci_command_packets(&self) -> u8
pub fn get_status(&self) -> ErrorCode
pub fn get_size(&self) -> usize
Trait Implementations§
Source§impl Clone for LeLongTermKeyRequestNegativeReplyComplete
impl Clone for LeLongTermKeyRequestNegativeReplyComplete
Source§fn clone(&self) -> LeLongTermKeyRequestNegativeReplyComplete
fn clone(&self) -> LeLongTermKeyRequestNegativeReplyComplete
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 From<LeLongTermKeyRequestNegativeReplyComplete> for Bytes
impl From<LeLongTermKeyRequestNegativeReplyComplete> for Bytes
Source§fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Self
fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Self
Converts to this type from the input type.
Source§impl From<LeLongTermKeyRequestNegativeReplyComplete> for CommandComplete
impl From<LeLongTermKeyRequestNegativeReplyComplete> for CommandComplete
Source§fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> CommandComplete
fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> CommandComplete
Converts to this type from the input type.
Source§impl From<LeLongTermKeyRequestNegativeReplyComplete> for Event
impl From<LeLongTermKeyRequestNegativeReplyComplete> for Event
Source§fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Event
fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Event
Converts to this type from the input type.
Source§impl From<LeLongTermKeyRequestNegativeReplyComplete> for Vec<u8>
impl From<LeLongTermKeyRequestNegativeReplyComplete> for Vec<u8>
Source§fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Self
fn from(packet: LeLongTermKeyRequestNegativeReplyComplete) -> Self
Converts to this type from the input type.
Source§impl From<LeLongTermKeyRequestNegativeReplyCompleteBuilder> for LeLongTermKeyRequestNegativeReplyComplete
impl From<LeLongTermKeyRequestNegativeReplyCompleteBuilder> for LeLongTermKeyRequestNegativeReplyComplete
Source§fn from(
builder: LeLongTermKeyRequestNegativeReplyCompleteBuilder,
) -> LeLongTermKeyRequestNegativeReplyComplete
fn from( builder: LeLongTermKeyRequestNegativeReplyCompleteBuilder, ) -> LeLongTermKeyRequestNegativeReplyComplete
Converts to this type from the input type.
Source§impl PartialEq for LeLongTermKeyRequestNegativeReplyComplete
impl PartialEq for LeLongTermKeyRequestNegativeReplyComplete
Source§fn eq(&self, other: &LeLongTermKeyRequestNegativeReplyComplete) -> bool
fn eq(&self, other: &LeLongTermKeyRequestNegativeReplyComplete) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeLongTermKeyRequestNegativeReplyComplete
impl StructuralPartialEq for LeLongTermKeyRequestNegativeReplyComplete
Auto Trait Implementations§
impl !Freeze for LeLongTermKeyRequestNegativeReplyComplete
impl RefUnwindSafe for LeLongTermKeyRequestNegativeReplyComplete
impl Send for LeLongTermKeyRequestNegativeReplyComplete
impl Sync for LeLongTermKeyRequestNegativeReplyComplete
impl Unpin for LeLongTermKeyRequestNegativeReplyComplete
impl UnwindSafe for LeLongTermKeyRequestNegativeReplyComplete
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