#[repr(u8)]pub enum FlowCommand {
Add = 0,
Modify = 1,
ModifyStrict = 2,
Delete = 3,
DeleteStrict = 4,
}Expand description
Flow command type.
Variants§
Add = 0
Add a new flow
Modify = 1
Modify matching flows
ModifyStrict = 2
Modify matching flows (strict match)
Delete = 3
Delete matching flows
DeleteStrict = 4
Delete matching flows (strict match)
Trait Implementations§
Source§impl Clone for FlowCommand
impl Clone for FlowCommand
Source§fn clone(&self) -> FlowCommand
fn clone(&self) -> FlowCommand
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 FlowCommand
impl Debug for FlowCommand
Source§impl PartialEq for FlowCommand
impl PartialEq for FlowCommand
impl Copy for FlowCommand
impl Eq for FlowCommand
impl StructuralPartialEq for FlowCommand
Auto Trait Implementations§
impl Freeze for FlowCommand
impl RefUnwindSafe for FlowCommand
impl Send for FlowCommand
impl Sync for FlowCommand
impl Unpin for FlowCommand
impl UnsafeUnpin for FlowCommand
impl UnwindSafe for FlowCommand
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