Struct pnet::packet::ethernet::EthernetPacket []

pub struct EthernetPacket<'p> {
    // some fields omitted
}

A structure enabling manipulation of on the wire packets

Methods

impl<'a> EthernetPacket<'a>

fn new<'p>(packet: &'p [u8]) -> Option<EthernetPacket<'p>>

Constructs a new EthernetPacket. If the provided buffer is less than the minimum required packet size, this will return None.

fn to_immutable<'p>(&'p self) -> EthernetPacket<'p>

Maps from a EthernetPacket to a EthernetPacket

fn minimum_packet_size() -> usize

The minimum size (in bytes) a packet of this type can be. It's based on the total size of the fixed-size fields.

fn packet_size(_packet: &Ethernet) -> usize

The size (in bytes) of a Ethernet instance when converted into a byte-array

fn get_destination(&self) -> MacAddr

Get the value of the destination field

fn get_source(&self) -> MacAddr

Get the value of the source field

fn get_ethertype(&self) -> EtherType

Get the value of the ethertype field

Trait Implementations

impl<'a> PacketSize for EthernetPacket<'a>

fn packet_size(&self) -> usize

impl<'a> Packet for EthernetPacket<'a>

fn packet<'p>(&'p self) -> &'p [u8]

fn payload<'p>(&'p self) -> &'p [u8]

impl<'p> FromPacket for EthernetPacket<'p>

type T = Ethernet

fn from_packet(&self) -> Ethernet

impl<'p> Debug for EthernetPacket<'p>

fn fmt(&self, fmt: &mut Formatter) -> Result

Derived Implementations

impl<'p> PartialEq for EthernetPacket<'p>

fn eq(&self, __arg_0: &EthernetPacket<'p>) -> bool

fn ne(&self, __arg_0: &EthernetPacket<'p>) -> bool