Struct pktparse::arp::ArpPacket[][src]

pub struct ArpPacket {
    pub hw_addr_type: HardwareAddressType,
    pub proto_addr_type: ProtocolAddressType,
    pub hw_addr_size: u8,
    pub proto_addr_size: u8,
    pub operation: Operation,
    pub src_mac: MacAddress,
    pub src_addr: Ipv4Addr,
    pub dest_mac: MacAddress,
    pub dest_addr: Ipv4Addr,
}

Fields

Trait Implementations

impl Debug for ArpPacket
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ArpPacket
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ArpPacket
[src]

Auto Trait Implementations

impl Send for ArpPacket

impl Sync for ArpPacket