pub struct RemoteOobDataRequestReply { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Clone for RemoteOobDataRequestReply
impl Clone for RemoteOobDataRequestReply
Source§fn clone(&self) -> RemoteOobDataRequestReply
fn clone(&self) -> RemoteOobDataRequestReply
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 Debug for RemoteOobDataRequestReply
impl Debug for RemoteOobDataRequestReply
Source§impl From<RemoteOobDataRequestReply> for Bytes
impl From<RemoteOobDataRequestReply> for Bytes
Source§fn from(packet: RemoteOobDataRequestReply) -> Self
fn from(packet: RemoteOobDataRequestReply) -> Self
Converts to this type from the input type.
Source§impl From<RemoteOobDataRequestReply> for Command
impl From<RemoteOobDataRequestReply> for Command
Source§fn from(packet: RemoteOobDataRequestReply) -> Command
fn from(packet: RemoteOobDataRequestReply) -> Command
Converts to this type from the input type.
Source§impl From<RemoteOobDataRequestReply> for Vec<u8>
impl From<RemoteOobDataRequestReply> for Vec<u8>
Source§fn from(packet: RemoteOobDataRequestReply) -> Self
fn from(packet: RemoteOobDataRequestReply) -> Self
Converts to this type from the input type.
Source§impl From<RemoteOobDataRequestReplyBuilder> for RemoteOobDataRequestReply
impl From<RemoteOobDataRequestReplyBuilder> for RemoteOobDataRequestReply
Source§fn from(builder: RemoteOobDataRequestReplyBuilder) -> RemoteOobDataRequestReply
fn from(builder: RemoteOobDataRequestReplyBuilder) -> RemoteOobDataRequestReply
Converts to this type from the input type.
Source§impl Packet for RemoteOobDataRequestReply
impl Packet for RemoteOobDataRequestReply
Source§impl TryFrom<Command> for RemoteOobDataRequestReply
impl TryFrom<Command> for RemoteOobDataRequestReply
impl Eq for RemoteOobDataRequestReply
impl StructuralPartialEq for RemoteOobDataRequestReply
Auto Trait Implementations§
impl !Freeze for RemoteOobDataRequestReply
impl RefUnwindSafe for RemoteOobDataRequestReply
impl Send for RemoteOobDataRequestReply
impl Sync for RemoteOobDataRequestReply
impl Unpin for RemoteOobDataRequestReply
impl UnwindSafe for RemoteOobDataRequestReply
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