Struct netsim_embed::ipv4::MutableIpv4Packet  
source · pub struct MutableIpv4Packet<'p> { /* private fields */ }Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> MutableIpv4Packet<'a>
 
impl<'a> MutableIpv4Packet<'a>
sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableIpv4Packet<'p>>
 
pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableIpv4Packet<'p>>
Constructs a new #name. If the provided buffer is less than the minimum required packet size, this will return None.
sourcepub fn owned(packet: Vec<u8, Global>) -> Option<MutableIpv4Packet<'static>>
 
pub fn owned(packet: Vec<u8, Global>) -> Option<MutableIpv4Packet<'static>>
Constructs a new #name. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the #name will own its own data and the underlying buffer will be dropped when the #name is.
sourcepub fn to_immutable<'p>(&'p self) -> Ipv4Packet<'p>
 
pub fn to_immutable<'p>(&'p self) -> Ipv4Packet<'p>
Maps from a #name to a #imm_name
sourcepub fn consume_to_immutable(self) -> Ipv4Packet<'a>
 
pub fn consume_to_immutable(self) -> Ipv4Packet<'a>
Maps from a #name to a #imm_name 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: &Ipv4) -> usize
 
pub fn packet_size(_packet: &Ipv4) -> usize
The size (in bytes) of a #base_name instance when converted into a byte-array
sourcepub fn get_version(&self) -> u8
 
pub fn get_version(&self) -> u8
Get the version field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_header_length(&self) -> u8
 
pub fn get_header_length(&self) -> u8
Get the header_length field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_dscp(&self) -> u8
 
pub fn get_dscp(&self) -> u8
Get the dscp field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_ecn(&self) -> u8
 
pub fn get_ecn(&self) -> u8
Get the ecn field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_total_length(&self) -> u16
 
pub fn get_total_length(&self) -> u16
Get the total_length field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_identification(&self) -> u16
 
pub fn get_identification(&self) -> u16
Get the identification field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_flags(&self) -> u8
 
pub fn get_flags(&self) -> u8
Get the flags field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_fragment_offset(&self) -> u16
 
pub fn get_fragment_offset(&self) -> u16
Get the fragment_offset field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_ttl(&self) -> u8
 
pub fn get_ttl(&self) -> u8
Get the ttl field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_next_level_protocol(&self) -> IpNextHeaderProtocol
 
pub fn get_next_level_protocol(&self) -> IpNextHeaderProtocol
Get the value of the {name} field
sourcepub fn get_checksum(&self) -> u16
 
pub fn get_checksum(&self) -> u16
Get the checksum field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_source(&self) -> Ipv4Addr
 
pub fn get_source(&self) -> Ipv4Addr
Get the value of the {name} field
sourcepub fn get_destination(&self) -> Ipv4Addr
 
pub fn get_destination(&self) -> Ipv4Addr
Get the value of the {name} field
sourcepub fn get_options_raw(&self) -> &[u8] ⓘ
 
pub fn get_options_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_options(&self) -> Vec<Ipv4Option, Global>
 
pub fn get_options(&self) -> Vec<Ipv4Option, Global>
Get the value of the {name} field (copies contents)
sourcepub fn get_options_iter(&self) -> Ipv4OptionIterable<'_> ⓘ
 
pub fn get_options_iter(&self) -> Ipv4OptionIterable<'_> ⓘ
Get the value of the {name} field as iterator
sourcepub fn get_payload(&self) -> Vec<u8, Global>
 
pub fn get_payload(&self) -> Vec<u8, Global>
Get the value of the {name} field (copies contents)
sourcepub fn set_version(&mut self, val: u8)
 
pub fn set_version(&mut self, val: u8)
Set the version field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_header_length(&mut self, val: u8)
 
pub fn set_header_length(&mut self, val: u8)
Set the header_length field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_dscp(&mut self, val: u8)
 
pub fn set_dscp(&mut self, val: u8)
Set the dscp field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_ecn(&mut self, val: u8)
 
pub fn set_ecn(&mut self, val: u8)
Set the ecn field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_total_length(&mut self, val: u16)
 
pub fn set_total_length(&mut self, val: u16)
Set the total_length field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_identification(&mut self, val: u16)
 
pub fn set_identification(&mut self, val: u16)
Set the identification field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_flags(&mut self, val: u8)
 
pub fn set_flags(&mut self, val: u8)
Set the flags field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_fragment_offset(&mut self, val: u16)
 
pub fn set_fragment_offset(&mut self, val: u16)
Set the fragment_offset field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_ttl(&mut self, val: u8)
 
pub fn set_ttl(&mut self, val: u8)
Set the ttl field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_next_level_protocol(&mut self, val: IpNextHeaderProtocol)
 
pub fn set_next_level_protocol(&mut self, val: IpNextHeaderProtocol)
Set the value of the {name} field.
sourcepub fn set_checksum(&mut self, val: u16)
 
pub fn set_checksum(&mut self, val: u16)
Set the checksum field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_source(&mut self, val: Ipv4Addr)
 
pub fn set_source(&mut self, val: Ipv4Addr)
Set the value of the {name} field.
sourcepub fn set_destination(&mut self, val: Ipv4Addr)
 
pub fn set_destination(&mut self, val: Ipv4Addr)
Set the value of the {name} field.
sourcepub fn get_options_raw_mut(&mut self) -> &mut [u8] ⓘ
 
pub fn get_options_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn set_options(&mut self, vals: &[Ipv4Option])
 
pub fn set_options(&mut self, vals: &[Ipv4Option])
Set the value of the {name} field (copies contents)
sourcepub fn set_payload(&mut self, vals: &[u8])
 
pub fn set_payload(&mut self, vals: &[u8])
Set the value of the {name} field (copies contents)