struct DhcpAckInfo {
msg_type: u8,
yiaddr: [u8; 4],
server: [u8; 4],
router: [u8; 4],
dns: [u8; 4],
dns2: [u8; 4],
subnet: [u8; 4],
lease_secs: u32,
t1_secs: u32,
t2_secs: u32,
}Fields§
§msg_type: u8§yiaddr: [u8; 4]§server: [u8; 4]§router: [u8; 4]§dns: [u8; 4]§dns2: [u8; 4]§subnet: [u8; 4]§lease_secs: u32§t1_secs: u32§t2_secs: u32Auto Trait Implementations§
impl Freeze for DhcpAckInfo
impl RefUnwindSafe for DhcpAckInfo
impl Send for DhcpAckInfo
impl Sync for DhcpAckInfo
impl Unpin for DhcpAckInfo
impl UnsafeUnpin for DhcpAckInfo
impl UnwindSafe for DhcpAckInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more