pub struct StopDiscovery(/* private fields */);
Expand description
Stop Discovery Command
Implementations§
Source§impl StopDiscovery
impl StopDiscovery
Sourcepub fn new(f0: AddressTypes) -> Self
pub fn new(f0: AddressTypes) -> Self
Constructs a new StopDiscovery
.
Methods from Deref<Target = AddressTypes>§
pub fn iter(&self) -> impl Iterator<Item = &AddressType>
Trait Implementations§
Source§impl AsMut<AddressTypes> for StopDiscovery
impl AsMut<AddressTypes> for StopDiscovery
Source§fn as_mut(&mut self) -> &mut AddressTypes
fn as_mut(&mut self) -> &mut AddressTypes
Converts this type into a mutable reference of the (usually inferred) input type.
Source§impl AsRef<AddressTypes> for StopDiscovery
impl AsRef<AddressTypes> for StopDiscovery
Source§fn as_ref(&self) -> &AddressTypes
fn as_ref(&self) -> &AddressTypes
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl CommandRequest for StopDiscovery
impl CommandRequest for StopDiscovery
Source§const CODE: CommandCode = CommandCode::StopDiscovery
const CODE: CommandCode = CommandCode::StopDiscovery
Command code.
Source§type Reply = StopDiscoveryReply
type Reply = StopDiscoveryReply
Return type for this command.
Source§impl Debug for StopDiscovery
impl Debug for StopDiscovery
Source§impl Deref for StopDiscovery
impl Deref for StopDiscovery
Source§impl DerefMut for StopDiscovery
impl DerefMut for StopDiscovery
Source§impl From<AddressTypes> for StopDiscovery
impl From<AddressTypes> for StopDiscovery
Source§fn from(v: AddressTypes) -> Self
fn from(v: AddressTypes) -> Self
Converts to this type from the input type.
Source§impl From<StopDiscovery> for Command
impl From<StopDiscovery> for Command
Source§fn from(v: StopDiscovery) -> Self
fn from(v: StopDiscovery) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StopDiscovery
impl RefUnwindSafe for StopDiscovery
impl Send for StopDiscovery
impl Sync for StopDiscovery
impl Unpin for StopDiscovery
impl UnwindSafe for StopDiscovery
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