pub struct DhcpConfig {
pub ip_address: Ipv4Address,
pub subnet_mask: Ipv4Address,
pub router: Option<Ipv4Address>,
pub dns_servers: Vec<Ipv4Address>,
pub lease_time: u32,
pub server_id: Ipv4Address,
}Expand description
DHCP client configuration
Fields§
§ip_address: Ipv4Address§subnet_mask: Ipv4Address§router: Option<Ipv4Address>§dns_servers: Vec<Ipv4Address>§lease_time: u32§server_id: Ipv4AddressTrait Implementations§
Source§impl Clone for DhcpConfig
impl Clone for DhcpConfig
Source§fn clone(&self) -> DhcpConfig
fn clone(&self) -> DhcpConfig
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DhcpConfig
impl RefUnwindSafe for DhcpConfig
impl Send for DhcpConfig
impl Sync for DhcpConfig
impl Unpin for DhcpConfig
impl UnwindSafe for DhcpConfig
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)