Struct pnet::packet::ipv4::MutableIpv4OptionPacket [] [src]

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

A structure enabling manipulation of on the wire packets

Methods

impl<'a> MutableIpv4OptionPacket<'a>
[src]

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

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

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

Maps from a MutableIpv4OptionPacket to a Ipv4OptionPacket

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: &Ipv4Option) -> usize

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

fn populate(&mut self, packet: &Ipv4Option)

Populates a Ipv4OptionPacket using a Ipv4Option structure

fn get_copied(&self) -> u1

Get the copied field

fn get_class(&self) -> u2

Get the class field

fn get_number(&self) -> Ipv4OptionNumber

Get the value of the number field

fn get_length_raw(&self) -> &[u8]

Get the raw &[u8] value of the length field, without copying

fn get_length(&self) -> Vec<u8>

Get the value of the length field (copies contents)

fn set_copied(&mut self, val: u1)

Set the copied field

fn set_class(&mut self, val: u2)

Set the class field

fn set_number(&mut self, val: Ipv4OptionNumber)

Set the value of the number field

fn get_length_raw_mut(&mut self) -> &mut [u8]

Get the raw &mut [u8] value of the length field, without copying

fn set_length(&mut self, vals: &[u8])

Set the value of the length field (copies contents)

fn set_data(&mut self, vals: &[u8])

Set the value of the data field (copies contents)

Trait Implementations

impl<'a> PacketSize for MutableIpv4OptionPacket<'a>
[src]

fn packet_size(&self) -> usize

Get the calculated size of the packet

impl<'a> MutablePacket for MutableIpv4OptionPacket<'a>
[src]

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

Retreive the underlying, mutable, buffer for the packet

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

Retreive the mutable payload for the packet

fn clone_from<T: Packet>(&mut self, other: &T)

Initialize this packet by cloning another

impl<'a> Packet for MutableIpv4OptionPacket<'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 MutableIpv4OptionPacket<'p>
[src]

type T = Ipv4Option

The type of the packet to convert from

fn from_packet(&self) -> Ipv4Option

Converts a wire-format packet to #[packet] struct format

impl<'p> Debug for MutableIpv4OptionPacket<'p>
[src]

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

Formats the value using the given formatter.

Derived Implementations

impl<'p> PartialEq for MutableIpv4OptionPacket<'p>
[src]

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

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

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

This method tests for !=.