pub enum NmtNodeArg {
All,
Specific(u8),
}Expand description
Specifies a node to apply an NMT command
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for NmtNodeArg
impl Clone for NmtNodeArg
Source§fn clone(&self) -> NmtNodeArg
fn clone(&self) -> NmtNodeArg
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 NmtNodeArg
impl Debug for NmtNodeArg
Source§impl FromStr for NmtNodeArg
impl FromStr for NmtNodeArg
Source§impl PartialEq for NmtNodeArg
impl PartialEq for NmtNodeArg
impl Copy for NmtNodeArg
impl StructuralPartialEq for NmtNodeArg
Auto Trait Implementations§
impl Freeze for NmtNodeArg
impl RefUnwindSafe for NmtNodeArg
impl Send for NmtNodeArg
impl Sync for NmtNodeArg
impl Unpin for NmtNodeArg
impl UnwindSafe for NmtNodeArg
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