#[non_exhaustive]pub enum TcMirrorActionType {
EgressRedir,
EgressMirror,
IngressRedir,
IngressMirror,
Other(i32),
}
Expand description
Type of mirroring or redirecting action.
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.
EgressRedir
Redirect to the egress pipeline.
EgressMirror
Mirror to the egress pipeline.
IngressRedir
Redirect to the ingress pipeline.
IngressMirror
Mirror to the ingress pipeline.
Other(i32)
Other action type unknown at the time of writing.
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
impl Copy for TcMirrorActionType
impl Eq for TcMirrorActionType
impl StructuralPartialEq for TcMirrorActionType
Auto Trait Implementations§
impl Freeze for TcMirrorActionType
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
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
)