embassy-net

Crates

git

Versions

default

Flavors

Skip to main content

Routes

Struct Routes 

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

A routing table, returned by Stack::routes.

Implementations§

Source§

impl<'d> Routes<'d>

Source

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

Add a route.

§Errors
  • NotUnicast: if via_router is not a unicast address.
  • Full: if the table has no room. Only possible without the alloc feature, where the limit is ROUTE_COUNT.
Source

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

Remove the route at index and return it.

§Panics

Panics if index is out of bounds.

Source

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

Keep only the routes for which f returns true.

Source

pub fn clear(&self)

Remove all routes.

Source

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

Iterate over the routes.

Source

pub fn len(&self) -> usize

Number of routes.

Source

pub fn is_empty(&self) -> bool

Whether there are no routes.

Source

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

Add a default ipv4 gateway (ie. “ip route add 0.0.0.0/0 via gateway dev iface”).

Returns the previous default route, if any. On error the previous default route is kept.

§Errors
  • NotUnicast: if gateway is not a unicast address.
  • Full: if the table has no room. Only possible without the alloc feature, where the limit is ROUTE_COUNT.
Source

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

Add a default ipv6 gateway (ie. “ip -6 route add ::/0 via gateway dev iface”).

Returns the previous default route, if any. On error the previous default route is kept.

§Errors
  • NotUnicast: if gateway is not a unicast address.
  • Full: if the table has no room. Only possible without the alloc feature, where the limit is ROUTE_COUNT.
Source

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

Returns the ipv4 default route if there is one in the route table.

Source

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

Returns the ipv6 default route if there is one in the route table.

Source

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

Remove the default ipv4 gateway, returning it if it existed.

Source

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

Remove the default ipv6 gateway, returning it if it existed.

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.