pub enum NetkitPairing {
Pair = 0,
Single = 1,
}Available on crate feature
rt-link only.Expand description
Enum - defines an integer enumeration, with values for each entry incrementing by 1, (e.g. 0, 1, 2, 3)
Variants§
Implementations§
Source§impl NetkitPairing
impl NetkitPairing
pub fn from_value(value: u64) -> Option<Self>
Trait Implementations§
Source§impl Clone for NetkitPairing
impl Clone for NetkitPairing
Source§fn clone(&self) -> NetkitPairing
fn clone(&self) -> NetkitPairing
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for NetkitPairing
Auto Trait Implementations§
impl Freeze for NetkitPairing
impl RefUnwindSafe for NetkitPairing
impl Send for NetkitPairing
impl Sync for NetkitPairing
impl Unpin for NetkitPairing
impl UnsafeUnpin for NetkitPairing
impl UnwindSafe for NetkitPairing
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