pub struct DhcpLease {
pub ip: Ipv4Addr,
pub mac: [u8; 16],
pub expires: Instant,
}
Fields§
§ip: Ipv4Addr
§mac: [u8; 16]
§expires: Instant
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DhcpLease
impl RefUnwindSafe for DhcpLease
impl Send for DhcpLease
impl Sync for DhcpLease
impl Unpin for DhcpLease
impl UnwindSafe for DhcpLease
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