embassy-net

Crates

git

Versions

default

Flavors

Skip to main content

NeighborCache

Struct NeighborCache 

Source
pub struct NeighborCache<'d> { /* private fields */ }
Expand description

The stack’s neighbor cache, returned by Stack::neighbor_cache.

Implementations§

Source§

impl<'d> NeighborCache<'d>

Source

pub fn get(&self, iface: IfaceHandle, addr: IpAddress) -> Option<Neighbor>

Look up a neighbor by interface and IP address.

Source

pub fn iter(&self) -> impl Iterator<Item = Neighbor> + 'd

Iterate over the neighbors in the cache.

Source

pub fn insert( &self, iface: IfaceHandle, addr: IpAddress, hardware_addr: HardwareAddress, expires_at: Instant, )

Insert a neighbor, replacing any entry for the same interface and address.

Source

pub fn remove(&self, iface: IfaceHandle, addr: IpAddress) -> Option<Neighbor>

Remove a neighbor, returning it.

Source

pub fn retain(&self, f: impl FnMut(&Neighbor) -> bool)

Keep only the neighbors f returns true for.

Source

pub fn clear_iface(&self, iface: IfaceHandle)

Remove every neighbor on one interface.

Source

pub fn clear(&self)

Remove every neighbor.

Source

pub fn len(&self) -> usize

The number of neighbors in the cache.

Source

pub fn is_empty(&self) -> bool

Whether the cache is empty.

Trait Implementations§

Source§

impl<'d> Clone for NeighborCache<'d>

Source§

fn clone(&self) -> NeighborCache<'d>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'d> Copy for NeighborCache<'d>

Auto Trait Implementations§

§

impl<'d> !RefUnwindSafe for NeighborCache<'d>

§

impl<'d> !Send for NeighborCache<'d>

§

impl<'d> !Sync for NeighborCache<'d>

§

impl<'d> !UnwindSafe for NeighborCache<'d>

§

impl<'d> Freeze for NeighborCache<'d>

§

impl<'d> Unpin for NeighborCache<'d>

§

impl<'d> UnsafeUnpin for NeighborCache<'d>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.