Struct netsim_embed::gre::MutableGrePacket
source · pub struct MutableGrePacket<'p> { /* private fields */ }Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> MutableGrePacket<'a>
impl<'a> MutableGrePacket<'a>
sourcepub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableGrePacket<'p>>
pub fn new<'p>(packet: &'p mut [u8]) -> Option<MutableGrePacket<'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<MutableGrePacket<'static>>
pub fn owned(packet: Vec<u8, Global>) -> Option<MutableGrePacket<'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) -> GrePacket<'p>
pub fn to_immutable<'p>(&'p self) -> GrePacket<'p>
Maps from a #name to a #imm_name
sourcepub fn consume_to_immutable(self) -> GrePacket<'a>
pub fn consume_to_immutable(self) -> GrePacket<'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: &Gre) -> usize
pub fn packet_size(_packet: &Gre) -> usize
The size (in bytes) of a #base_name instance when converted into a byte-array
sourcepub fn get_checksum_present(&self) -> u8
pub fn get_checksum_present(&self) -> u8
Get the checksum_present field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_routing_present(&self) -> u8
pub fn get_routing_present(&self) -> u8
Get the routing_present field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_key_present(&self) -> u8
pub fn get_key_present(&self) -> u8
Get the key_present field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_sequence_present(&self) -> u8
pub fn get_sequence_present(&self) -> u8
Get the sequence_present field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_strict_source_route(&self) -> u8
pub fn get_strict_source_route(&self) -> u8
Get the strict_source_route field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_recursion_control(&self) -> u8
pub fn get_recursion_control(&self) -> u8
Get the recursion_control field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_zero_flags(&self) -> u8
pub fn get_zero_flags(&self) -> u8
Get the zero_flags field. This field is always stored big-endian within the struct, but this accessor returns host order.
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_protocol_type(&self) -> u16
pub fn get_protocol_type(&self) -> u16
Get the protocol_type field. This field is always stored big-endian within the struct, but this accessor returns host order.
sourcepub fn get_checksum_raw(&self) -> &[u8] ⓘ
pub fn get_checksum_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_checksum(&self) -> Vec<U16BE, Global>
pub fn get_checksum(&self) -> Vec<U16BE, Global>
Get the value of the {name} field (copies contents)
sourcepub fn get_checksum_iter(&self) -> U16BEIterable<'_> ⓘ
pub fn get_checksum_iter(&self) -> U16BEIterable<'_> ⓘ
Get the value of the {name} field as iterator
sourcepub fn get_offset_raw(&self) -> &[u8] ⓘ
pub fn get_offset_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_offset(&self) -> Vec<U16BE, Global>
pub fn get_offset(&self) -> Vec<U16BE, Global>
Get the value of the {name} field (copies contents)
sourcepub fn get_offset_iter(&self) -> U16BEIterable<'_> ⓘ
pub fn get_offset_iter(&self) -> U16BEIterable<'_> ⓘ
Get the value of the {name} field as iterator
sourcepub fn get_key_raw(&self) -> &[u8] ⓘ
pub fn get_key_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_key(&self) -> Vec<U32BE, Global>
pub fn get_key(&self) -> Vec<U32BE, Global>
Get the value of the {name} field (copies contents)
sourcepub fn get_key_iter(&self) -> U32BEIterable<'_> ⓘ
pub fn get_key_iter(&self) -> U32BEIterable<'_> ⓘ
Get the value of the {name} field as iterator
sourcepub fn get_sequence_raw(&self) -> &[u8] ⓘ
pub fn get_sequence_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_sequence(&self) -> Vec<U32BE, Global>
pub fn get_sequence(&self) -> Vec<U32BE, Global>
Get the value of the {name} field (copies contents)
sourcepub fn get_sequence_iter(&self) -> U32BEIterable<'_> ⓘ
pub fn get_sequence_iter(&self) -> U32BEIterable<'_> ⓘ
Get the value of the {name} field as iterator
sourcepub fn get_routing_raw(&self) -> &[u8] ⓘ
pub fn get_routing_raw(&self) -> &[u8] ⓘ
Get the raw &u8 value of the {name} field, without copying
sourcepub fn get_routing(&self) -> Vec<u8, Global>
pub fn get_routing(&self) -> Vec<u8, Global>
Get the value of the {name} field (copies contents)
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_checksum_present(&mut self, val: u8)
pub fn set_checksum_present(&mut self, val: u8)
Set the checksum_present field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_routing_present(&mut self, val: u8)
pub fn set_routing_present(&mut self, val: u8)
Set the routing_present field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_key_present(&mut self, val: u8)
pub fn set_key_present(&mut self, val: u8)
Set the key_present field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_sequence_present(&mut self, val: u8)
pub fn set_sequence_present(&mut self, val: u8)
Set the sequence_present field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_strict_source_route(&mut self, val: u8)
pub fn set_strict_source_route(&mut self, val: u8)
Set the strict_source_route field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_recursion_control(&mut self, val: u8)
pub fn set_recursion_control(&mut self, val: u8)
Set the recursion_control field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn set_zero_flags(&mut self, val: u8)
pub fn set_zero_flags(&mut self, val: u8)
Set the zero_flags field. This field is always stored big-endian within the struct, but this mutator wants host order.
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_protocol_type(&mut self, val: u16)
pub fn set_protocol_type(&mut self, val: u16)
Set the protocol_type field. This field is always stored big-endian within the struct, but this mutator wants host order.
sourcepub fn get_checksum_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_checksum_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn set_checksum(&mut self, vals: &[U16BE])
pub fn set_checksum(&mut self, vals: &[U16BE])
Set the value of the {name} field (copies contents)
sourcepub fn get_offset_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_offset_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn set_offset(&mut self, vals: &[U16BE])
pub fn set_offset(&mut self, vals: &[U16BE])
Set the value of the {name} field (copies contents)
sourcepub fn get_key_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_key_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn get_sequence_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_sequence_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn set_sequence(&mut self, vals: &[U32BE])
pub fn set_sequence(&mut self, vals: &[U32BE])
Set the value of the {name} field (copies contents)
sourcepub fn get_routing_raw_mut(&mut self) -> &mut [u8] ⓘ
pub fn get_routing_raw_mut(&mut self) -> &mut [u8] ⓘ
Get the raw &mut u8 value of the {name} field, without copying
sourcepub fn set_routing(&mut self, vals: &[u8])
pub fn set_routing(&mut self, vals: &[u8])
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)