Struct smoltcp::iface::Routes

source ·
pub struct Routes<'a> { /* private fields */ }
Expand description

A routing table.

Examples

On systems with heap, this table can be created with:

use std::collections::BTreeMap;
use smoltcp::iface::Routes;
let mut routes = Routes::new(BTreeMap::new());

On systems without heap, use:

use smoltcp::iface::Routes;
let mut routes_storage = [];
let mut routes = Routes::new(&mut routes_storage[..]);

Implementations§

Creates a routing tables. The backing storage is not cleared upon creation.

Update the routes of this node.

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

On success, returns the previous default route, if any.

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

On success, returns the previous default route, if any.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.