Struct netsim_embed::gre::GrePacket  
source · pub struct GrePacket<'p> { /* private fields */ }Expand description
A structure enabling manipulation of on the wire packets
Implementations§
source§impl<'a> GrePacket<'a>
 
impl<'a> GrePacket<'a>
sourcepub fn new<'p>(packet: &'p [u8]) -> Option<GrePacket<'p>>
 
pub fn new<'p>(packet: &'p [u8]) -> Option<GrePacket<'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<GrePacket<'static>>
 
pub fn owned(packet: Vec<u8, Global>) -> Option<GrePacket<'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)