#[non_exhaustive]pub enum TcActionType {
Unspec,
Ok,
Reclassify,
Shot,
Pipe,
Stolen,
Queued,
Repeat,
Redirect,
Trap,
Other(i32),
}
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 TcActionType
impl Clone for TcActionType
Source§fn clone(&self) -> TcActionType
fn clone(&self) -> TcActionType
Returns a copy 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 TcActionType
impl Debug for TcActionType
Source§impl Default for TcActionType
impl Default for TcActionType
Source§fn default() -> TcActionType
fn default() -> TcActionType
Returns the “default value” for a type. Read more
Source§impl From<TcActionType> for i32
impl From<TcActionType> for i32
Source§fn from(v: TcActionType) -> i32
fn from(v: TcActionType) -> i32
Converts to this type from the input type.
Source§impl From<i32> for TcActionType
impl From<i32> for TcActionType
Source§impl PartialEq for TcActionType
impl PartialEq for TcActionType
impl Copy for TcActionType
impl Eq for TcActionType
impl StructuralPartialEq for TcActionType
Auto Trait Implementations§
impl Freeze for TcActionType
impl RefUnwindSafe for TcActionType
impl Send for TcActionType
impl Sync for TcActionType
impl Unpin for TcActionType
impl UnwindSafe for TcActionType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)