MutableIpv6Packet

Struct MutableIpv6Packet 

Source
pub struct MutableIpv6Packet<'a> { /* private fields */ }
Expand description

Represents a mutable IPv6 packet.

Implementations§

Source§

impl<'a> MutableIpv6Packet<'a>

Source

pub fn new_unchecked(buffer: &'a mut [u8]) -> Self

Create a new packet without checking length.

Source

pub fn payload_len(&self) -> usize

Source

pub fn get_version(&self) -> u8

Source

pub fn set_version(&mut self, version: u8)

Source

pub fn get_traffic_class(&self) -> u8

Source

pub fn set_traffic_class(&mut self, class: u8)

Source

pub fn get_flow_label(&self) -> u32

Source

pub fn set_flow_label(&mut self, label: u32)

Source

pub fn get_payload_length(&self) -> u16

Source

pub fn set_payload_length(&mut self, length: u16)

Source

pub fn get_next_header(&self) -> IpNextProtocol

Source

pub fn set_next_header(&mut self, proto: IpNextProtocol)

Source

pub fn get_hop_limit(&self) -> u8

Source

pub fn set_hop_limit(&mut self, value: u8)

Source

pub fn get_source(&self) -> Ipv6Addr

Source

pub fn set_source(&mut self, addr: Ipv6Addr)

Source

pub fn get_destination(&self) -> Ipv6Addr

Source

pub fn set_destination(&mut self, addr: Ipv6Addr)

Trait Implementations§

Source§

impl<'a> MutablePacket<'a> for MutableIpv6Packet<'a>

Source§

type Packet = Ipv6Packet

The immutable packet type associated with this mutable view.
Source§

fn new(buffer: &'a mut [u8]) -> Option<Self>

Construct a mutable packet from the provided buffer.
Source§

fn packet(&self) -> &[u8]

Get a shared view over the entire packet buffer.
Source§

fn packet_mut(&mut self) -> &mut [u8]

Get a mutable view over the entire packet buffer.
Source§

fn header(&self) -> &[u8]

Get the serialized header bytes of the packet.
Source§

fn header_mut(&mut self) -> &mut [u8]

Get a mutable view over the serialized header bytes of the packet.
Source§

fn payload(&self) -> &[u8]

Get the payload bytes of the packet.
Source§

fn payload_mut(&mut self) -> &mut [u8]

Get a mutable view over the payload bytes of the packet.
Source§

fn freeze(&self) -> Option<Self::Packet>

Convert the mutable packet into its immutable counterpart.

Auto Trait Implementations§

§

impl<'a> Freeze for MutableIpv6Packet<'a>

§

impl<'a> RefUnwindSafe for MutableIpv6Packet<'a>

§

impl<'a> Send for MutableIpv6Packet<'a>

§

impl<'a> Sync for MutableIpv6Packet<'a>

§

impl<'a> Unpin for MutableIpv6Packet<'a>

§

impl<'a> !UnwindSafe for MutableIpv6Packet<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V