pub struct LeSetPhyBuilder {
pub all_phys_no_receive_preference: u8,
pub all_phys_no_transmit_preference: u8,
pub connection_handle: u16,
pub phy_options: PhyOptions,
pub rx_phys: u8,
pub tx_phys: u8,
}Fields§
§all_phys_no_receive_preference: u8§all_phys_no_transmit_preference: u8§connection_handle: u16§phy_options: PhyOptions§rx_phys: u8§tx_phys: u8Implementations§
Trait Implementations§
Source§impl Debug for LeSetPhyBuilder
impl Debug for LeSetPhyBuilder
Source§impl From<LeSetPhyBuilder> for Command
impl From<LeSetPhyBuilder> for Command
Source§fn from(builder: LeSetPhyBuilder) -> Command
fn from(builder: LeSetPhyBuilder) -> Command
Converts to this type from the input type.
Source§impl From<LeSetPhyBuilder> for LeSetPhy
impl From<LeSetPhyBuilder> for LeSetPhy
Source§fn from(builder: LeSetPhyBuilder) -> LeSetPhy
fn from(builder: LeSetPhyBuilder) -> LeSetPhy
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LeSetPhyBuilder
impl RefUnwindSafe for LeSetPhyBuilder
impl Send for LeSetPhyBuilder
impl Sync for LeSetPhyBuilder
impl Unpin for LeSetPhyBuilder
impl UnwindSafe for LeSetPhyBuilder
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> 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