pub struct LeSetPathLossReportingParametersComplete { /* private fields */ }Implementations§
Source§impl LeSetPathLossReportingParametersComplete
impl LeSetPathLossReportingParametersComplete
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 LeSetPathLossReportingParametersComplete
impl Clone for LeSetPathLossReportingParametersComplete
Source§fn clone(&self) -> LeSetPathLossReportingParametersComplete
fn clone(&self) -> LeSetPathLossReportingParametersComplete
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<LeSetPathLossReportingParametersComplete> for Bytes
impl From<LeSetPathLossReportingParametersComplete> for Bytes
Source§fn from(packet: LeSetPathLossReportingParametersComplete) -> Self
fn from(packet: LeSetPathLossReportingParametersComplete) -> Self
Converts to this type from the input type.
Source§impl From<LeSetPathLossReportingParametersComplete> for CommandComplete
impl From<LeSetPathLossReportingParametersComplete> for CommandComplete
Source§fn from(packet: LeSetPathLossReportingParametersComplete) -> CommandComplete
fn from(packet: LeSetPathLossReportingParametersComplete) -> CommandComplete
Converts to this type from the input type.
Source§impl From<LeSetPathLossReportingParametersComplete> for Event
impl From<LeSetPathLossReportingParametersComplete> for Event
Source§fn from(packet: LeSetPathLossReportingParametersComplete) -> Event
fn from(packet: LeSetPathLossReportingParametersComplete) -> Event
Converts to this type from the input type.
Source§impl From<LeSetPathLossReportingParametersComplete> for Vec<u8>
impl From<LeSetPathLossReportingParametersComplete> for Vec<u8>
Source§fn from(packet: LeSetPathLossReportingParametersComplete) -> Self
fn from(packet: LeSetPathLossReportingParametersComplete) -> Self
Converts to this type from the input type.
Source§impl From<LeSetPathLossReportingParametersCompleteBuilder> for LeSetPathLossReportingParametersComplete
impl From<LeSetPathLossReportingParametersCompleteBuilder> for LeSetPathLossReportingParametersComplete
Source§fn from(
builder: LeSetPathLossReportingParametersCompleteBuilder,
) -> LeSetPathLossReportingParametersComplete
fn from( builder: LeSetPathLossReportingParametersCompleteBuilder, ) -> LeSetPathLossReportingParametersComplete
Converts to this type from the input type.
Source§impl PartialEq for LeSetPathLossReportingParametersComplete
impl PartialEq for LeSetPathLossReportingParametersComplete
Source§fn eq(&self, other: &LeSetPathLossReportingParametersComplete) -> bool
fn eq(&self, other: &LeSetPathLossReportingParametersComplete) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for LeSetPathLossReportingParametersComplete
impl StructuralPartialEq for LeSetPathLossReportingParametersComplete
Auto Trait Implementations§
impl !Freeze for LeSetPathLossReportingParametersComplete
impl RefUnwindSafe for LeSetPathLossReportingParametersComplete
impl Send for LeSetPathLossReportingParametersComplete
impl Sync for LeSetPathLossReportingParametersComplete
impl Unpin for LeSetPathLossReportingParametersComplete
impl UnwindSafe for LeSetPathLossReportingParametersComplete
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