embassy-net

Crates

git

Versions

default

Flavors

Skip to main content

DhcpServerConfig

Struct DhcpServerConfig 

Source
#[non_exhaustive]
pub struct DhcpServerConfig { pub pool_start: Ipv4Address, pub pool_end: Ipv4Address, pub lease_duration: Duration, pub gateway: Option<Ipv4Address>, pub dns_servers: Vec<Ipv4Address, DHCP_MAX_DNS_SERVER_COUNT>, pub outgoing_options: &'static [DhcpOption<'static>], }
Expand description

Configuration of the DHCP server, passed to Iface::set_dhcpv4_server.

Start from DhcpServerConfig::new and change the fields you need.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§pool_start: Ipv4Address

First address of the pool leases are taken from.

§pool_end: Ipv4Address

Last address of the pool, inclusive.

§lease_duration: Duration

How long a lease lasts. Clients asking for a shorter lease get it.

§gateway: Option<Ipv4Address>

The default gateway sent to clients, if any.

§dns_servers: Vec<Ipv4Address, DHCP_MAX_DNS_SERVER_COUNT>

The DNS servers sent to clients. Empty sends none.

§outgoing_options: &'static [DhcpOption<'static>]

Extra options added to every OFFER and ACK.

Implementations§

Source§

impl DhcpServerConfig

Source

pub fn new(pool_start: Ipv4Address, pool_end: Ipv4Address) -> Self

A configuration leasing addresses from pool_start to pool_end (inclusive) for one hour, with no gateway and no DNS servers.

Trait Implementations§

Source§

impl Clone for DhcpServerConfig

Source§

fn clone(&self) -> DhcpServerConfig

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 Debug for DhcpServerConfig

Source§

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

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

impl Format for DhcpServerConfig
where Ipv4Address: Format, Duration: Format, Option<Ipv4Address>: Format, Vec<Ipv4Address, DHCP_MAX_DNS_SERVER_COUNT>: Format, &'static [DhcpOption<'static>]: Format,

Source§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.

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