pub enum DmsgDispatch {
Bypass,
Forward,
}Expand description
Outcome of dmsg_process.
Bypass means the header has been recognised as control traffic
and the cluster layer should not pass the message further down
the protocol stack.
Variants§
Bypass
Frame consumed by a control-plane handler.
Forward
Frame should continue through the data-plane stack.
Trait Implementations§
Source§impl Clone for DmsgDispatch
impl Clone for DmsgDispatch
Source§fn clone(&self) -> DmsgDispatch
fn clone(&self) -> DmsgDispatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DmsgDispatch
impl Debug for DmsgDispatch
Source§impl PartialEq for DmsgDispatch
impl PartialEq for DmsgDispatch
Source§fn eq(&self, other: &DmsgDispatch) -> bool
fn eq(&self, other: &DmsgDispatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DmsgDispatch
impl Eq for DmsgDispatch
impl StructuralPartialEq for DmsgDispatch
Auto Trait Implementations§
impl Freeze for DmsgDispatch
impl RefUnwindSafe for DmsgDispatch
impl Send for DmsgDispatch
impl Sync for DmsgDispatch
impl Unpin for DmsgDispatch
impl UnsafeUnpin for DmsgDispatch
impl UnwindSafe for DmsgDispatch
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.