pub enum CollectionMode {
Collector,
Listener,
}Expand description
CSI collection behavior for the node.
Use Listener to keep CSI traffic flowing without processing packets,
or Collector to actively process CSI data. Note: Listener combined with
a sniffer node makes the sniffer effectively useless because no CSI data is
processed.
Variants§
Collector
Enables CSI collection and processes CSI data.
Listener
Enables CSI collection but does not process CSI data.
Trait Implementations§
Source§impl Clone for CollectionMode
impl Clone for CollectionMode
Source§fn clone(&self) -> CollectionMode
fn clone(&self) -> CollectionMode
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 PartialEq for CollectionMode
impl PartialEq for CollectionMode
impl Copy for CollectionMode
impl Eq for CollectionMode
impl StructuralPartialEq for CollectionMode
Auto Trait Implementations§
impl Freeze for CollectionMode
impl RefUnwindSafe for CollectionMode
impl Send for CollectionMode
impl Sync for CollectionMode
impl Unpin for CollectionMode
impl UnsafeUnpin for CollectionMode
impl UnwindSafe for CollectionMode
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