[][src]Struct netsim_embed::ipv4::MutableIpv4Packet

pub struct MutableIpv4Packet<'p> { /* fields omitted */ }

A structure enabling manipulation of on the wire packets

Implementations

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

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

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

pub fn owned(packet: Vec<u8, Global>) -> Option<MutableIpv4Packet<'static>>[src]

Constructs a new MutableIpv4Packet. If the provided buffer is less than the minimum required packet size, this will return None. With this constructor the MutableIpv4Packet will own its own data and the underlying buffer will be dropped when the MutableIpv4Packet is.

pub fn to_immutable(&'p self) -> Ipv4Packet<'p>[src]

Maps from a MutableIpv4Packet to a Ipv4Packet

pub fn consume_to_immutable(self) -> Ipv4Packet<'a>[src]

Maps from a MutableIpv4Packet to a Ipv4Packet while consuming the source

pub const fn minimum_packet_size() -> usize[src]

The minimum size (in bytes) a packet of this type can be. It's based on the total size of the fixed-size fields.

pub fn packet_size(_packet: &Ipv4) -> usize[src]

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

pub fn populate(&mut self, packet: &Ipv4)[src]

Populates a Ipv4Packet using a Ipv4 structure

pub fn get_version(&self) -> u8[src]

Get the version field.

pub fn get_header_length(&self) -> u8[src]

Get the header_length field.

pub fn get_dscp(&self) -> u8[src]

Get the dscp field.

pub fn get_ecn(&self) -> u8[src]

Get the ecn field.

pub fn get_total_length(&self) -> u16[src]

Get the total_length field. This field is always stored big-endian within the struct, but this accessor returns host order.

pub fn get_identification(&self) -> u16[src]

Get the identification field. This field is always stored big-endian within the struct, but this accessor returns host order.

pub fn get_flags(&self) -> u8[src]

Get the flags field.

pub fn get_fragment_offset(&self) -> u16[src]

Get the fragment_offset field. This field is always stored big-endian within the struct, but this accessor returns host order.

pub fn get_ttl(&self) -> u8[src]

Get the ttl field.

pub fn get_next_level_protocol(&self) -> IpNextHeaderProtocol[src]

Get the value of the next_level_protocol field

pub fn get_checksum(&self) -> u16[src]

Get the checksum field. This field is always stored big-endian within the struct, but this accessor returns host order.

pub fn get_source(&self) -> Ipv4Addr[src]

Get the value of the source field

pub fn get_destination(&self) -> Ipv4Addr[src]

Get the value of the destination field

pub fn get_options_raw(&self) -> &[u8][src]

Get the raw &u8 value of the options field, without copying

pub fn get_options(&self) -> Vec<Ipv4Option, Global>[src]

Get the value of the options field (copies contents)

pub fn get_options_iter(&self) -> Ipv4OptionIterable<'_>

Notable traits for Ipv4OptionIterable<'a>

impl<'a> Iterator for Ipv4OptionIterable<'a> type Item = Ipv4OptionPacket<'a>;
[src]

Get the value of the options field as iterator

pub fn set_version(&mut self, val: u8)[src]

Set the version field.

pub fn set_header_length(&mut self, val: u8)[src]

Set the header_length field.

pub fn set_dscp(&mut self, val: u8)[src]

Set the dscp field.

pub fn set_ecn(&mut self, val: u8)[src]

Set the ecn field.

pub fn set_total_length(&mut self, val: u16)[src]

Set the total_length field. This field is always stored big-endian within the struct, but this mutator wants host order.

pub fn set_identification(&mut self, val: u16)[src]

Set the identification field. This field is always stored big-endian within the struct, but this mutator wants host order.

pub fn set_flags(&mut self, val: u8)[src]

Set the flags field.

pub fn set_fragment_offset(&mut self, val: u16)[src]

Set the fragment_offset field. This field is always stored big-endian within the struct, but this mutator wants host order.

pub fn set_ttl(&mut self, val: u8)[src]

Set the ttl field.

pub fn set_next_level_protocol(&mut self, val: IpNextHeaderProtocol)[src]

Set the value of the next_level_protocol field.

pub fn set_checksum(&mut self, val: u16)[src]

Set the checksum field. This field is always stored big-endian within the struct, but this mutator wants host order.

pub fn set_source(&mut self, val: Ipv4Addr)[src]

Set the value of the source field.

pub fn set_destination(&mut self, val: Ipv4Addr)[src]

Set the value of the destination field.

pub fn get_options_raw_mut(&mut self) -> &mut [u8][src]

Get the raw &mut u8 value of the options field, without copying

pub fn set_options(&mut self, vals: &[Ipv4Option])[src]

Set the value of the options field (copies contents)

pub fn set_payload(&mut self, vals: &[u8])[src]

Set the value of the payload field (copies contents)

Trait Implementations

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

impl<'p> FromPacket for MutableIpv4Packet<'p>[src]

type T = Ipv4

The type of the packet to convert from.

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

impl<'a> Packet for MutableIpv4Packet<'a>[src]

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

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

impl<'p> StructuralPartialEq for MutableIpv4Packet<'p>[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,