Struct pnet::packet::icmp::time_exceeded::TimeExceededPacket
[−]
[src]
pub struct TimeExceededPacket<'p> { // some fields omitted }
A structure enabling manipulation of on the wire packets
Methods
impl<'a> TimeExceededPacket<'a>
[src]
fn new<'p>(packet: &'p [u8]) -> Option<TimeExceededPacket<'p>>
Constructs a new TimeExceededPacket. If the provided buffer is less than the minimum required packet size, this will return None.
fn to_immutable<'p>(&'p self) -> TimeExceededPacket<'p>
Maps from a TimeExceededPacket to a TimeExceededPacket
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: &TimeExceeded) -> usize
The size (in bytes) of a TimeExceeded instance when converted into a byte-array
fn get_icmp_type(&self) -> IcmpType
Get the value of the icmp_type field
fn get_icmp_code(&self) -> IcmpCode
Get the value of the icmp_code field
fn get_checksum(&self) -> u16be
Get the checksum field
fn get_unused(&self) -> u32be
Get the unused field
Trait Implementations
impl<'a> PacketSize for TimeExceededPacket<'a>
[src]
fn packet_size(&self) -> usize
Get the calculated size of the packet
impl<'a> Packet for TimeExceededPacket<'a>
[src]
fn packet<'p>(&'p self) -> &'p [u8]
Retreive the underlying buffer for the packet
fn payload<'p>(&'p self) -> &'p [u8]
Retreive the payload for the packet
impl<'p> FromPacket for TimeExceededPacket<'p>
[src]
type T = TimeExceeded
The type of the packet to convert from
fn from_packet(&self) -> TimeExceeded
Converts a wire-format packet to #[packet] struct format
impl<'p> Debug for TimeExceededPacket<'p>
[src]
Derived Implementations
impl<'p> PartialEq for TimeExceededPacket<'p>
[src]
fn eq(&self, __arg_0: &TimeExceededPacket<'p>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &TimeExceededPacket<'p>) -> bool
This method tests for !=
.