xarxa

Crates

git

Versions

default

Flavors

Skip to main content

Routes

Struct Routes 

Source
pub struct Routes { /* private fields */ }
Expand description

A routing table.

Implementations§

Source§

impl Routes

Source

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

Add a route.

Errors:

  • Full if the table has no room. Only possible without the alloc feature, where the limit is ROUTE_COUNT.
Source

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

Remove the route at index and return it.

§Panics

Panics if index is out of bounds.

Source

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

Keep only the routes for which f returns true.

Source

pub fn clear(&mut self)

Remove all routes.

Source

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

Iterate over the routes.

Source

pub fn iter_mut(&mut self) -> impl Iterator<Item = &mut Route>

Iterate over the routes, mutably.

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( &mut self, gateway: Ipv4Address, iface: IfaceHandle, ) -> Result<Option<Route>, Full>

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.

Errors:

  • 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( &mut self, gateway: Ipv6Address, iface: IfaceHandle, ) -> Result<Option<Route>, Full>

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

Returns the previous default route, if any.

Errors:

  • Full if the table has no room. Only possible without the alloc feature, where the limit is ROUTE_COUNT.
Source

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

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

Source

pub fn get_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(&mut self) -> Option<Route>

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

Source

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

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

Trait Implementations§

Source§

impl Debug for Routes

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Routes

Source§

fn default() -> Routes

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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> 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.