Struct retina_core::Mbuf

source ·
pub struct Mbuf { /* private fields */ }
Expand description

A packet buffer.

This is a wrapper around a DPDK message buffer that represents a single Ethernet frame.

Implementations§

source§

impl Mbuf

source

pub fn data_len(&self) -> usize

Returns the length of the data in the Mbuf.

source

pub fn data(&self) -> &[u8]

Returns the contents of the Mbuf as a byte slice.

source

pub fn get_data_slice(&self, offset: usize, count: usize) -> Result<&[u8]>

Returns a byte slice of data with length count at offset.

Errors if offset is greater than or equal to the buffer length or count exceeds the size of the data stored at offset.

Trait Implementations§

source§

impl Clone for Mbuf

source§

fn clone(&self) -> Mbuf

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Mbuf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Mbuf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Mbuf

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl<'a> Packet<'a> for Mbuf

source§

fn mbuf(&self) -> &Mbuf

Reference to the underlying packet buffer.
source§

fn header_len(&self) -> usize

Offset from the beginning of the header to the start of the payload.
source§

fn next_header_offset(&self) -> usize

Offset from the beginning of the packet buffer to the start of the payload.
source§

fn next_header(&self) -> Option<usize>

Next level IANA protocol number.
source§

fn parse_from(_outer: &'a impl Packet<'a>) -> Result<Self>where Self: Sized,

Parses a Packet from the outer encapsulating Packet’s payload.
source§

fn parse_to<T: Packet<'a>>(&'a self) -> Result<T>where Self: Sized,

Parses the Packet’s payload as a new Packet of type T.

Auto Trait Implementations§

§

impl RefUnwindSafe for Mbuf

§

impl !Send for Mbuf

§

impl !Sync for Mbuf

§

impl Unpin for Mbuf

§

impl UnwindSafe for Mbuf

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.