Enum EntryState
#[repr(u32)]pub enum EntryState {
Incomplete = 1,
Reachable = 2,
Stale = 3,
Delay = 4,
Probe = 5,
Static = 6,
Unreachable = 7,
}
Variants§
Incomplete = 1
Reachability is in the process of being confirmed for a newly created, non-static entry.
Reachable = 2
Positive reachability has been confirmed; the path to the neighbor is functioning properly.
Stale = 3
Reachability is considered unknown.
Occurs in one of two ways:
- Too much time has elapsed since the last positive reachability confirmation was received.
- Received a reachability confirmation from a neighbor with a different MAC address than the one cached.
Delay = 4
A packet was recently sent while reachability was considered unknown.
This state is an optimization that gives non-Neighbor-Discovery related protocols time to confirm reachability after the last confirmation of reachability has expired due to lack of recent traffic.
Probe = 5
A reachability confirmation is actively sought by periodically retransmitting reachability probes until a reachability confirmation is received, or until the maximum number of probes has been sent.
Static = 6
Static entries are explicitly added with [Controller.AddEntry
].
They do not expire and are not deleted until explicitly removed with
[Controller.RemoveEntry
].
Unreachable = 7
Negative reachability has been confirmed; the path to the neighbor may not be functioning properly. A reachability confirmation was not received after transmitting the maximum number of reachability probes.
Implementations§
§impl EntryState
impl EntryState
pub fn from_primitive(prim: u32) -> Option<EntryState>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
is_unknown
Trait Implementations§
§impl Clone for EntryState
impl Clone for EntryState
§fn clone(&self) -> EntryState
fn clone(&self) -> EntryState
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for EntryState
impl Debug for EntryState
§impl<D> Decode<EntryState, D> for EntryStatewhere
D: ResourceDialect,
impl<D> Decode<EntryState, D> for EntryStatewhere
D: ResourceDialect,
§fn new_empty() -> EntryState
fn new_empty() -> EntryState
Self
. The specific value does not matter,
since it will be overwritten by decode
.§impl<D> Encode<EntryState, D> for EntryStatewhere
D: ResourceDialect,
impl<D> Encode<EntryState, D> for EntryStatewhere
D: ResourceDialect,
§impl Hash for EntryState
impl Hash for EntryState
§impl Ord for EntryState
impl Ord for EntryState
§impl PartialEq for EntryState
impl PartialEq for EntryState
§impl PartialOrd for EntryState
impl PartialOrd for EntryState
§impl TypeMarker for EntryState
impl TypeMarker for EntryState
§type Owned = EntryState
type Owned = EntryState
§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.§impl ValueTypeMarker for EntryState
impl ValueTypeMarker for EntryState
§type Borrowed<'a> = EntryState
type Borrowed<'a> = EntryState
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read more§fn borrow(
value: &<EntryState as TypeMarker>::Owned,
) -> <EntryState as ValueTypeMarker>::Borrowed<'_>
fn borrow( value: &<EntryState as TypeMarker>::Owned, ) -> <EntryState as ValueTypeMarker>::Borrowed<'_>
&Self::Owned
to Self::Borrowed
.