Skip to main content

Queue

Enum Queue 

Source
pub enum Queue<'a> {
    Id(u32),
    Ifindex(u32),
    Type(u32),
    NapiId(u32),
    Dmabuf(u32),
    IoUring(IterableIoUringProviderInfo<'a>),
    Xsk(IterableXskInfo<'a>),
}
Available on crate feature netdev only.

Variants§

§

Id(u32)

Queue index; most queue types are indexed like a C array, with indexes starting at 0 and ending at queue count - 1. Queue indexes are scoped to an interface and queue type.

§

Ifindex(u32)

ifindex of the netdevice to which the queue belongs.

§

Type(u32)

Queue type as rx, tx. Each queue type defines a separate ID space. XDP TX queues allocated in the kernel are not linked to NAPIs and thus not listed. AF_XDP queues will have more information set in the xsk attribute. Associated type: QueueType (enum)

§

NapiId(u32)

ID of the NAPI instance which services this queue.

§

Dmabuf(u32)

ID of the dmabuf attached to this queue, if any.

§

IoUring(IterableIoUringProviderInfo<'a>)

io_uring memory provider information.

§

Xsk(IterableXskInfo<'a>)

XSK information for this queue, if any.

Implementations§

Source§

impl Queue<'_>

Source

pub fn new<'a>(buf: &'a [u8]) -> IterableQueue<'a>

Trait Implementations§

Source§

impl<'a> Clone for Queue<'a>

Source§

fn clone(&self) -> Queue<'a>

Returns a duplicate of the value. Read more
1.0.0 · Source§

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

Performs copy-assignment from source. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Queue<'a>

§

impl<'a> RefUnwindSafe for Queue<'a>

§

impl<'a> Send for Queue<'a>

§

impl<'a> Sync for Queue<'a>

§

impl<'a> Unpin for Queue<'a>

§

impl<'a> UnsafeUnpin for Queue<'a>

§

impl<'a> UnwindSafe for Queue<'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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

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