[][src]Enum syscall::io_uring::v1::KernelOpcode

#[repr(u8)]#[non_exhaustive]pub enum KernelOpcode {
    Waitpid,
    AllocateIoringMemory,
}

The opcodes specific to the kernel.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Waitpid

TODO

AllocateIoringMemory

Allocates memory meant to be shared between an io_uring producer and consumer, managed by the kernel.

required fieldusage descriptionSIZE
syscall_flagsTODOBOTH
addrnot usedBOTH
fdthe file descriptor of the io_uringBOTH
offsetnot usedBOTH
lenthe number of bytes to allocateBOTH
additional1not used64
additional2not used64

Implementations

impl KernelOpcode[src]

pub fn from_raw(raw: u8) -> Option<Self>[src]

Trait Implementations

impl Clone for KernelOpcode[src]

impl Copy for KernelOpcode[src]

impl Debug for KernelOpcode[src]

impl Eq for KernelOpcode[src]

impl Hash for KernelOpcode[src]

impl PartialEq<KernelOpcode> for KernelOpcode[src]

impl StructuralEq for KernelOpcode[src]

impl StructuralPartialEq for KernelOpcode[src]

Auto Trait Implementations

impl Send for KernelOpcode

impl Sync for KernelOpcode

impl Unpin for KernelOpcode

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.