pub enum FlowUpdateEvent {
Added,
Deleted,
Modified,
}Expand description
Flow update event type.
Variants§
Added
Flow was added (or initial snapshot entry).
Deleted
Flow was deleted.
Modified
Flow was modified.
Trait Implementations§
Source§impl Clone for FlowUpdateEvent
impl Clone for FlowUpdateEvent
Source§fn clone(&self) -> FlowUpdateEvent
fn clone(&self) -> FlowUpdateEvent
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 FlowUpdateEvent
impl Debug for FlowUpdateEvent
Source§impl PartialEq for FlowUpdateEvent
impl PartialEq for FlowUpdateEvent
impl Copy for FlowUpdateEvent
impl Eq for FlowUpdateEvent
impl StructuralPartialEq for FlowUpdateEvent
Auto Trait Implementations§
impl Freeze for FlowUpdateEvent
impl RefUnwindSafe for FlowUpdateEvent
impl Send for FlowUpdateEvent
impl Sync for FlowUpdateEvent
impl Unpin for FlowUpdateEvent
impl UnsafeUnpin for FlowUpdateEvent
impl UnwindSafe for FlowUpdateEvent
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