#[repr(u8)]pub enum FlowModCommand {
Add = 0,
Modify = 1,
ModifyStrict = 2,
Delete = 3,
DeleteStrict = 4,
Unparsable = 255,
}Expand description
Commands for modifying flow entries in the OpenFlow switch
Variants§
Add = 0
Add a new flow entry
Modify = 1
Modify all matching flow entries
ModifyStrict = 2
Modify flow entries with exactly matching fields
Delete = 3
Delete all matching flow entries
DeleteStrict = 4
Delete flow entries with exactly matching fields
Unparsable = 255
Command could not be parsed
Implementations§
Auto Trait Implementations§
impl Freeze for FlowModCommand
impl RefUnwindSafe for FlowModCommand
impl Send for FlowModCommand
impl Sync for FlowModCommand
impl Unpin for FlowModCommand
impl UnsafeUnpin for FlowModCommand
impl UnwindSafe for FlowModCommand
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