Struct pnet_packet::ipv4::MutableIpv4OptionPacket
source · pub struct MutableIpv4OptionPacket<'p> { /* private fields */ }
Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> MutableIpv4OptionPacket<'a>
impl<'a> MutableIpv4OptionPacket<'a>
sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableIpv4OptionPacket<'p>>
pub 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.
sourcepub fn owned(packet: Vec<u8>) -> Option<MutableIpv4OptionPacket<'static>>
pub fn owned(packet: Vec<u8>) -> Option<MutableIpv4OptionPacket<'static>>
Constructs a new MutableIpv4OptionPacket. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the MutableIpv4OptionPacket will own its own data and the underlying buffer will be dropped when the MutableIpv4OptionPacket is.
sourcepub fn to_immutable<'p>(&'p self) -> Ipv4OptionPacket<'p>
pub fn to_immutable<'p>(&'p self) -> Ipv4OptionPacket<'p>
Maps from a MutableIpv4OptionPacket to a Ipv4OptionPacket
sourcepub fn consume_to_immutable(self) -> Ipv4OptionPacket<'a>
pub fn consume_to_immutable(self) -> Ipv4OptionPacket<'a>
Maps from a MutableIpv4OptionPacket to a Ipv4OptionPacket while consuming the source
sourcepub const fn minimum_packet_size() -> usize
pub const 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.
sourcepub fn packet_size(_packet: &Ipv4Option) -> usize
pub fn packet_size(_packet: &Ipv4Option) -> usize
The size (in bytes) of a Ipv4Option instance when converted into a byte-array
sourcepub fn populate(&mut self, packet: &Ipv4Option)
pub fn populate(&mut self, packet: &Ipv4Option)
Populates a Ipv4OptionPacket using a Ipv4Option structure
sourcepub fn get_copied(&self) -> u1
pub fn get_copied(&self) -> u1
Get the copied field.
sourcepub fn get_number(&self) -> Ipv4OptionNumber
pub fn get_number(&self) -> Ipv4OptionNumber
Get the value of the number field
sourcepub fn get_length_raw(&self) -> &[u8] ⓘ
pub fn get_length_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the length field, without copying
sourcepub fn get_length(&self) -> Vec<u8>
pub fn get_length(&self) -> Vec<u8>
Get the value of the length field (copies contents)
sourcepub fn set_copied(&mut self, val: u1)
pub fn set_copied(&mut self, val: u1)
Set the copied field.
sourcepub fn set_number(&mut self, val: Ipv4OptionNumber)
pub fn set_number(&mut self, val: Ipv4OptionNumber)
Set the value of the number field.
sourcepub fn get_length_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_length_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the length field, without copying
sourcepub fn set_length(&mut self, vals: &[u8])
pub fn set_length(&mut self, vals: &[u8])
Set the value of the length field (copies contents)
Trait Implementations§
source§impl<'p> Debug for MutableIpv4OptionPacket<'p>
impl<'p> Debug for MutableIpv4OptionPacket<'p>
source§impl<'p> FromPacket for MutableIpv4OptionPacket<'p>
impl<'p> FromPacket for MutableIpv4OptionPacket<'p>
§type T = Ipv4Option
type T = Ipv4Option
source§fn from_packet(&self) -> Ipv4Option
fn from_packet(&self) -> Ipv4Option
source§impl<'a> MutablePacket for MutableIpv4OptionPacket<'a>
impl<'a> MutablePacket for MutableIpv4OptionPacket<'a>
source§fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
fn packet_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
source§fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
fn payload_mut<'p>(&'p mut self) -> &'p mut [u8] ⓘ
source§fn clone_from<T>(&mut self, other: &T)where
T: Packet,
fn clone_from<T>(&mut self, other: &T)where
T: Packet,
source§impl<'a> Packet for MutableIpv4OptionPacket<'a>
impl<'a> Packet for MutableIpv4OptionPacket<'a>
source§impl<'a> PacketSize for MutableIpv4OptionPacket<'a>
impl<'a> PacketSize for MutableIpv4OptionPacket<'a>
source§fn packet_size(&self) -> usize
fn packet_size(&self) -> usize
source§impl<'p> PartialEq for MutableIpv4OptionPacket<'p>
impl<'p> PartialEq for MutableIpv4OptionPacket<'p>
source§fn eq(&self, other: &MutableIpv4OptionPacket<'p>) -> bool
fn eq(&self, other: &MutableIpv4OptionPacket<'p>) -> bool
self
and other
values to be equal, and is used
by ==
.