Struct ARP_HEADER
#[repr(C)]pub struct ARP_HEADER {
pub HardwareAddressSpace: u16,
pub ProtocolAddressSpace: u16,
pub HardwareAddressLength: u8,
pub ProtocolAddressLength: u8,
pub Opcode: u16,
pub SenderHardwareAddress: [u8; 1],
}
Fields§
§HardwareAddressSpace: u16
§ProtocolAddressSpace: u16
§HardwareAddressLength: u8
§ProtocolAddressLength: u8
§Opcode: u16
§SenderHardwareAddress: [u8; 1]
Trait Implementations§
§impl Clone for ARP_HEADER
impl Clone for ARP_HEADER
§fn clone(&self) -> ARP_HEADER
fn clone(&self) -> ARP_HEADER
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for ARP_HEADER
Auto Trait Implementations§
impl Freeze for ARP_HEADER
impl RefUnwindSafe for ARP_HEADER
impl Send for ARP_HEADER
impl Sync for ARP_HEADER
impl Unpin for ARP_HEADER
impl UnwindSafe for ARP_HEADER
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