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