Struct retina_core::memory::mbuf::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.

source

pub fn has_mark(&mut self, _mark: u32) -> bool

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 Freeze for Mbuf

§

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 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> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where U: Into<T>,

§

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>,

§

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.