[][src]Struct netsim_embed::ipv6::MutableFragmentPacket

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

A structure enabling manipulation of on the wire packets

Implementations

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

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

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

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

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

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

Maps from a MutableFragmentPacket to a FragmentPacket

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

Maps from a MutableFragmentPacket to a FragmentPacket 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: &Fragment) -> usize[src]

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

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

Populates a FragmentPacket using a Fragment structure

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

Get the value of the next_header field

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

Get the reserved field.

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

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

pub fn get_id(&self) -> u32[src]

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

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

Set the value of the next_header field.

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

Set the reserved field.

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

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

pub fn set_id(&mut self, val: u32)[src]

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

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

Set the value of the payload field (copies contents)

impl<'p> MutableFragmentPacket<'p>[src]

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

pub fn is_last_fragment(&self) -> bool[src]

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

pub fn set_last_fragment(&mut self, is_last: bool)[src]

Trait Implementations

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

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

type T = Fragment

The type of the packet to convert from.

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

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

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

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

impl<'p> StructuralPartialEq for MutableFragmentPacket<'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>,