pub enum FlowUpdate {
Full(Box<FlowUpdateFull>),
Abbrev {
xid: u32,
},
}Expand description
A flow update received from the monitor.
Variants§
Full(Box<FlowUpdateFull>)
A flow was added, deleted, or modified.
Abbrev
Abbreviated notification for the caller’s own changes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlowUpdate
impl RefUnwindSafe for FlowUpdate
impl Send for FlowUpdate
impl Sync for FlowUpdate
impl Unpin for FlowUpdate
impl UnsafeUnpin for FlowUpdate
impl UnwindSafe for FlowUpdate
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