Struct smoltcp::iface::Interface

source ·
pub struct Interface { /* private fields */ }
Expand description

A network interface.

The network interface logically owns a number of other data structures; to avoid a dependency on heap allocation, it instead owns a BorrowMut<[T]>, which can be a &mut [T], or Vec<T> if a heap is available.

Implementations§

source§

impl Interface

source

pub fn new<D>(config: Config, device: &mut D, now: Instant) -> Self
where D: Device + ?Sized,

Create a network interface using the previously provided configuration.

§Panics

This function panics if the [Config::hardware_address] does not match the medium of the device.

source

pub fn context(&mut self) -> &mut InterfaceInner

Get the socket context.

The context is needed for some socket methods.

source

pub fn hardware_addr(&self) -> HardwareAddress

Get the HardwareAddress address of the interface.

§Panics

This function panics if the medium is not Ethernet or Ieee802154.

source

pub fn set_hardware_addr(&mut self, addr: HardwareAddress)

Set the HardwareAddress address of the interface.

§Panics

This function panics if the address is not unicast, and if the medium is not Ethernet or Ieee802154.

source

pub fn ip_addrs(&self) -> &[IpCidr]

Get the IP addresses of the interface.

source

pub fn ipv4_addr(&self) -> Option<Ipv4Address>

Get the first IPv4 address if present.

source

pub fn update_ip_addrs<F: FnOnce(&mut Vec<IpCidr, IFACE_MAX_ADDR_COUNT>)>( &mut self, f: F, )

Update the IP addresses of the interface.

§Panics

This function panics if any of the addresses are not unicast.

source

pub fn has_ip_addr<T: Into<IpAddress>>(&self, addr: T) -> bool

Check whether the interface has the given IP address assigned.

source

pub fn routes(&self) -> &Routes

source

pub fn routes_mut(&mut self) -> &mut Routes

source

pub fn set_any_ip(&mut self, any_ip: bool)

Enable or disable the AnyIP capability.

AnyIP allowins packets to be received locally on IPv4 addresses other than the interface’s configured [ip_addrs]. When AnyIP is enabled and a route prefix in routes specifies one of the interface’s ip_addrs as its gateway, the interface will accept packets addressed to that prefix.

§IPv6

This option is not available or required for IPv6 as packets sent to the interface are not filtered by IPv6 address.

source

pub fn any_ip(&self) -> bool

Get whether AnyIP is enabled.

See set_any_ip for details on AnyIP

source

pub fn poll<D>( &mut self, timestamp: Instant, device: &mut D, sockets: &mut SocketSet<'_>, ) -> bool
where D: Device + ?Sized,

Transmit packets queued in the given sockets, and receive packets queued in the device.

This function returns a boolean value indicating whether any packets were processed or emitted, and thus, whether the readiness of any socket might have changed.

source

pub fn poll_at( &mut self, timestamp: Instant, sockets: &SocketSet<'_>, ) -> Option<Instant>

Return a soft deadline for calling poll the next time. The Instant returned is the time at which you should call poll next. It is harmless (but wastes energy) to call it before the Instant, and potentially harmful (impacting quality of service) to call it after the Instant

source

pub fn poll_delay( &mut self, timestamp: Instant, sockets: &SocketSet<'_>, ) -> Option<Duration>

Return an advisory wait time for calling poll the next time. The Duration returned is the time left to wait before calling poll next. It is harmless (but wastes energy) to call it before the Duration has passed, and potentially harmful (impacting quality of service) to call it after the Duration has passed.

Auto Trait Implementations§

§

impl Freeze for Interface

§

impl RefUnwindSafe for Interface

§

impl Send for Interface

§

impl Sync for Interface

§

impl Unpin for Interface

§

impl UnwindSafe for Interface

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.