#[non_exhaustive]pub enum TcMirrorActionType {
EgressRedir,
EgressMirror,
IngressRedir,
IngressMirror,
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 TcMirrorActionType
impl Clone for TcMirrorActionType
source§fn clone(&self) -> TcMirrorActionType
fn clone(&self) -> TcMirrorActionType
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 TcMirrorActionType
impl Debug for TcMirrorActionType
source§impl Default for TcMirrorActionType
impl Default for TcMirrorActionType
source§fn default() -> TcMirrorActionType
fn default() -> TcMirrorActionType
Returns the “default value” for a type. Read more
source§impl From<TcMirrorActionType> for i32
impl From<TcMirrorActionType> for i32
source§fn from(v: TcMirrorActionType) -> i32
fn from(v: TcMirrorActionType) -> i32
Converts to this type from the input type.
source§impl From<i32> for TcMirrorActionType
impl From<i32> for TcMirrorActionType
source§impl PartialEq for TcMirrorActionType
impl PartialEq for TcMirrorActionType
source§fn eq(&self, other: &TcMirrorActionType) -> bool
fn eq(&self, other: &TcMirrorActionType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TcMirrorActionType
impl Eq for TcMirrorActionType
impl StructuralEq for TcMirrorActionType
impl StructuralPartialEq for TcMirrorActionType
Auto Trait Implementations§
impl RefUnwindSafe for TcMirrorActionType
impl Send for TcMirrorActionType
impl Sync for TcMirrorActionType
impl Unpin for TcMirrorActionType
impl UnwindSafe for TcMirrorActionType
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