#[repr(u16)]pub enum flowSelectorAlgorithm {
SystematiccountbasedSampling = 1,
SystematictimebasedSampling = 2,
RandomnoutofNSampling = 3,
UniformprobabilisticSampling = 4,
PropertyMatchFiltering = 5,
HashbasedFilteringusingBOB = 6,
HashbasedFilteringusingIPSX = 7,
HashbasedFilteringusingCRC = 8,
FlowstateDependentIntermediateFlowSelectionProcess = 9,
Unassigned(u16),
}Variants§
SystematiccountbasedSampling = 1
Systematic count-based Sampling
Reference: RFC7014
SystematictimebasedSampling = 2
Systematic time-based Sampling
Reference: RFC7014
RandomnoutofNSampling = 3
Random n-out-of-N Sampling
Reference: RFC7014
UniformprobabilisticSampling = 4
Uniform probabilistic Sampling
Reference: RFC7014
PropertyMatchFiltering = 5
Property Match Filtering
Reference: RFC7014
HashbasedFilteringusingBOB = 6
Hash-based Filtering using BOB
Reference: RFC7014
HashbasedFilteringusingIPSX = 7
Hash-based Filtering using IPSX
Reference: RFC7014
HashbasedFilteringusingCRC = 8
Hash-based Filtering using CRC
Reference: RFC7014
FlowstateDependentIntermediateFlowSelectionProcess = 9
Flow-state Dependent Intermediate Flow Selection Process
Reference: RFC7014
Unassigned(u16)
Trait Implementations§
Source§impl BitOr for flowSelectorAlgorithm
impl BitOr for flowSelectorAlgorithm
Source§type Output = flowSelectorAlgorithm
type Output = flowSelectorAlgorithm
The resulting type after applying the
| operator.Source§impl BitOrAssign for flowSelectorAlgorithm
impl BitOrAssign for flowSelectorAlgorithm
Source§fn bitor_assign(&mut self, rhs: flowSelectorAlgorithm)
fn bitor_assign(&mut self, rhs: flowSelectorAlgorithm)
Performs the
|= operation. Read moreSource§impl Clone for flowSelectorAlgorithm
impl Clone for flowSelectorAlgorithm
Source§fn clone(&self) -> flowSelectorAlgorithm
fn clone(&self) -> flowSelectorAlgorithm
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 flowSelectorAlgorithm
impl Debug for flowSelectorAlgorithm
Source§impl<'de> Deserialize<'de> for flowSelectorAlgorithm
impl<'de> Deserialize<'de> for flowSelectorAlgorithm
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for flowSelectorAlgorithm
impl Display for flowSelectorAlgorithm
Source§impl From<flowSelectorAlgorithm> for u16
impl From<flowSelectorAlgorithm> for u16
Source§fn from(value: flowSelectorAlgorithm) -> Self
fn from(value: flowSelectorAlgorithm) -> Self
Converts to this type from the input type.
Source§impl From<u16> for flowSelectorAlgorithm
impl From<u16> for flowSelectorAlgorithm
Source§impl Hash for flowSelectorAlgorithm
impl Hash for flowSelectorAlgorithm
Source§impl Ord for flowSelectorAlgorithm
impl Ord for flowSelectorAlgorithm
Source§fn cmp(&self, other: &flowSelectorAlgorithm) -> Ordering
fn cmp(&self, other: &flowSelectorAlgorithm) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for flowSelectorAlgorithm
impl PartialEq for flowSelectorAlgorithm
Source§impl PartialOrd for flowSelectorAlgorithm
impl PartialOrd for flowSelectorAlgorithm
Source§impl Serialize for flowSelectorAlgorithm
impl Serialize for flowSelectorAlgorithm
impl Copy for flowSelectorAlgorithm
impl Eq for flowSelectorAlgorithm
impl StructuralPartialEq for flowSelectorAlgorithm
Auto Trait Implementations§
impl Freeze for flowSelectorAlgorithm
impl RefUnwindSafe for flowSelectorAlgorithm
impl Send for flowSelectorAlgorithm
impl Sync for flowSelectorAlgorithm
impl Unpin for flowSelectorAlgorithm
impl UnsafeUnpin for flowSelectorAlgorithm
impl UnwindSafe for flowSelectorAlgorithm
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more