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