pub struct WriteInquiryTransmitPowerLevelBuilder {
pub tx_power: u8,
}Fields§
§tx_power: u8Implementations§
Source§impl WriteInquiryTransmitPowerLevelBuilder
impl WriteInquiryTransmitPowerLevelBuilder
pub fn build(self) -> WriteInquiryTransmitPowerLevel
Trait Implementations§
Source§impl From<WriteInquiryTransmitPowerLevelBuilder> for Command
impl From<WriteInquiryTransmitPowerLevelBuilder> for Command
Source§fn from(builder: WriteInquiryTransmitPowerLevelBuilder) -> Command
fn from(builder: WriteInquiryTransmitPowerLevelBuilder) -> Command
Converts to this type from the input type.
Source§impl From<WriteInquiryTransmitPowerLevelBuilder> for WriteInquiryTransmitPowerLevel
impl From<WriteInquiryTransmitPowerLevelBuilder> for WriteInquiryTransmitPowerLevel
Source§fn from(
builder: WriteInquiryTransmitPowerLevelBuilder,
) -> WriteInquiryTransmitPowerLevel
fn from( builder: WriteInquiryTransmitPowerLevelBuilder, ) -> WriteInquiryTransmitPowerLevel
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WriteInquiryTransmitPowerLevelBuilder
impl RefUnwindSafe for WriteInquiryTransmitPowerLevelBuilder
impl Send for WriteInquiryTransmitPowerLevelBuilder
impl Sync for WriteInquiryTransmitPowerLevelBuilder
impl Unpin for WriteInquiryTransmitPowerLevelBuilder
impl UnwindSafe for WriteInquiryTransmitPowerLevelBuilder
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