#[repr(C)]pub struct Dhcp4TransmitReceiveToken {
pub status: Status,
pub completion_event: Event,
pub remote_address: Ipv4Address,
pub remote_port: u16,
pub gateway_address: Ipv4Address,
pub listen_point_count: u32,
pub listen_points: *mut Dhcp4ListenPoint,
pub timeout_value: u32,
pub packet: *mut Dhcp4Packet,
pub response_count: u32,
pub response_list: *mut Dhcp4Packet,
}
Fields§
§status: Status
§completion_event: Event
§remote_address: Ipv4Address
§remote_port: u16
§gateway_address: Ipv4Address
§listen_point_count: u32
§listen_points: *mut Dhcp4ListenPoint
§timeout_value: u32
§packet: *mut Dhcp4Packet
§response_count: u32
§response_list: *mut Dhcp4Packet
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Dhcp4TransmitReceiveToken
impl RefUnwindSafe for Dhcp4TransmitReceiveToken
impl !Send for Dhcp4TransmitReceiveToken
impl !Sync for Dhcp4TransmitReceiveToken
impl Unpin for Dhcp4TransmitReceiveToken
impl UnwindSafe for Dhcp4TransmitReceiveToken
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