#[non_exhaustive]pub enum NetkitScrub {
None,
Default,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for NetkitScrub
impl Clone for NetkitScrub
Source§fn clone(&self) -> NetkitScrub
fn clone(&self) -> NetkitScrub
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 NetkitScrub
impl Debug for NetkitScrub
Source§impl From<NetkitScrub> for u32
impl From<NetkitScrub> for u32
Source§fn from(scrub: NetkitScrub) -> Self
fn from(scrub: NetkitScrub) -> Self
Converts to this type from the input type.
Source§impl From<u32> for NetkitScrub
impl From<u32> for NetkitScrub
Source§impl PartialEq for NetkitScrub
impl PartialEq for NetkitScrub
impl Copy for NetkitScrub
impl Eq for NetkitScrub
impl StructuralPartialEq for NetkitScrub
Auto Trait Implementations§
impl Freeze for NetkitScrub
impl RefUnwindSafe for NetkitScrub
impl Send for NetkitScrub
impl Sync for NetkitScrub
impl Unpin for NetkitScrub
impl UnwindSafe for NetkitScrub
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