#[non_exhaustive]pub enum NeighbourTableParameter {
Show 19 variants
Ifindex(u32),
ReferenceCount(u32),
ReachableTime(u64),
BaseReachableTime(u64),
RetransTime(u64),
GcStaletime(u64),
DelayProbeTime(u64),
QueueLen(u32),
AppProbes(u32),
UcastProbes(u32),
McastProbes(u32),
AnycastDelay(u64),
ProxyDelay(u64),
ProxyQlen(u32),
Locktime(u64),
QueueLenbytes(u32),
McastReprobes(u32),
IntervalProbeTimeMs(u64),
Other(DefaultNla),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Ifindex(u32)
ReferenceCount(u32)
ReachableTime(u64)
BaseReachableTime(u64)
RetransTime(u64)
GcStaletime(u64)
DelayProbeTime(u64)
QueueLen(u32)
AppProbes(u32)
UcastProbes(u32)
McastProbes(u32)
AnycastDelay(u64)
ProxyDelay(u64)
ProxyQlen(u32)
Locktime(u64)
QueueLenbytes(u32)
McastReprobes(u32)
IntervalProbeTimeMs(u64)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for NeighbourTableParameter
impl Clone for NeighbourTableParameter
source§fn clone(&self) -> NeighbourTableParameter
fn clone(&self) -> NeighbourTableParameter
Returns a copy 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 NeighbourTableParameter
impl Debug for NeighbourTableParameter
source§impl Nla for NeighbourTableParameter
impl Nla for NeighbourTableParameter
source§impl PartialEq for NeighbourTableParameter
impl PartialEq for NeighbourTableParameter
source§fn eq(&self, other: &NeighbourTableParameter) -> bool
fn eq(&self, other: &NeighbourTableParameter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for NeighbourTableParameter
impl StructuralEq for NeighbourTableParameter
impl StructuralPartialEq for NeighbourTableParameter
Auto Trait Implementations§
impl RefUnwindSafe for NeighbourTableParameter
impl Send for NeighbourTableParameter
impl Sync for NeighbourTableParameter
impl Unpin for NeighbourTableParameter
impl UnwindSafe for NeighbourTableParameter
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