pub struct RemoteOobDataRequestBuilder {
pub bd_addr: Address,
}Fields§
§bd_addr: AddressImplementations§
Source§impl RemoteOobDataRequestBuilder
impl RemoteOobDataRequestBuilder
pub fn build(self) -> RemoteOobDataRequest
Trait Implementations§
Source§impl Debug for RemoteOobDataRequestBuilder
impl Debug for RemoteOobDataRequestBuilder
Source§impl From<RemoteOobDataRequestBuilder> for Event
impl From<RemoteOobDataRequestBuilder> for Event
Source§fn from(builder: RemoteOobDataRequestBuilder) -> Event
fn from(builder: RemoteOobDataRequestBuilder) -> Event
Converts to this type from the input type.
Source§impl From<RemoteOobDataRequestBuilder> for RemoteOobDataRequest
impl From<RemoteOobDataRequestBuilder> for RemoteOobDataRequest
Source§fn from(builder: RemoteOobDataRequestBuilder) -> RemoteOobDataRequest
fn from(builder: RemoteOobDataRequestBuilder) -> RemoteOobDataRequest
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RemoteOobDataRequestBuilder
impl RefUnwindSafe for RemoteOobDataRequestBuilder
impl Send for RemoteOobDataRequestBuilder
impl Sync for RemoteOobDataRequestBuilder
impl Unpin for RemoteOobDataRequestBuilder
impl UnwindSafe for RemoteOobDataRequestBuilder
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