embassy-net

Crates

git

Versions

default

Flavors

Skip to main content

Routes

Struct Routes 

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

The stack’s routing table, returned by Stack::routes.

Implementations§

Source§

impl<'d> Routes<'d>

Source

pub fn add(&self, route: Route) -> Result<(), Full>

Add a route to the table.

Errors:

  • Full if the table has no room for another route.
Source

pub fn remove(&self, index: usize) -> Route

Remove the route at index, returning it.

§Panics

Panics if index is out of bounds.

Source

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

Keep only the routes f returns true for.

Source

pub fn clear(&self)

Remove every route.

Source

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

Iterate over the routes in the table.

Source

pub fn len(&self) -> usize

The number of routes in the table.

Source

pub fn is_empty(&self) -> bool

Whether the table is empty.

Source

pub fn add_default_ipv4_route( &self, gateway: Ipv4Address, iface: IfaceHandle, ) -> Result<Option<Route>, Full>

Set the default IPv4 route, via gateway out of iface.

Replaces the existing default IPv4 route, which is returned.

Source

pub fn add_default_ipv6_route( &self, gateway: Ipv6Address, iface: IfaceHandle, ) -> Result<Option<Route>, Full>

Set the default IPv6 route, via gateway out of iface.

Replaces the existing default IPv6 route, which is returned.

Source

pub fn get_default_ipv4_route(&self) -> Option<Route>

The default IPv4 route, if there is one.

Source

pub fn get_default_ipv6_route(&self) -> Option<Route>

The default IPv6 route, if there is one.

Source

pub fn remove_default_ipv4_route(&self) -> Option<Route>

Remove the default IPv4 route, returning it.

Source

pub fn remove_default_ipv6_route(&self) -> Option<Route>

Remove the default IPv6 route, returning it.

Trait Implementations§

Source§

impl<'d> Clone for Routes<'d>

Source§

fn clone(&self) -> Routes<'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 Routes<'d>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

impl<'d> Freeze for Routes<'d>

§

impl<'d> Unpin for Routes<'d>

§

impl<'d> UnsafeUnpin for Routes<'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.