#[repr(u32)]
#[non_exhaustive]
pub enum io_uring_op {
Show 50 variants IORING_OP_NOP, IORING_OP_READV, IORING_OP_WRITEV, IORING_OP_FSYNC, IORING_OP_READ_FIXED, IORING_OP_WRITE_FIXED, IORING_OP_POLL_ADD, IORING_OP_POLL_REMOVE, IORING_OP_SYNC_FILE_RANGE, IORING_OP_SENDMSG, IORING_OP_RECVMSG, IORING_OP_TIMEOUT, IORING_OP_TIMEOUT_REMOVE, IORING_OP_ACCEPT, IORING_OP_ASYNC_CANCEL, IORING_OP_LINK_TIMEOUT, IORING_OP_CONNECT, IORING_OP_FALLOCATE, IORING_OP_OPENAT, IORING_OP_CLOSE, IORING_OP_FILES_UPDATE, IORING_OP_STATX, IORING_OP_READ, IORING_OP_WRITE, IORING_OP_FADVISE, IORING_OP_MADVISE, IORING_OP_SEND, IORING_OP_RECV, IORING_OP_OPENAT2, IORING_OP_EPOLL_CTL, IORING_OP_SPLICE, IORING_OP_PROVIDE_BUFFERS, IORING_OP_REMOVE_BUFFERS, IORING_OP_TEE, IORING_OP_SHUTDOWN, IORING_OP_RENAMEAT, IORING_OP_UNLINKAT, IORING_OP_MKDIRAT, IORING_OP_SYMLINKAT, IORING_OP_LINKAT, IORING_OP_MSG_RING, IORING_OP_FSETXATTR, IORING_OP_SETXATTR, IORING_OP_FGETXATTR, IORING_OP_GETXATTR, IORING_OP_SOCKET, IORING_OP_URING_CMD, IORING_OP_SEND_ZC, IORING_OP_SENDMSG_ZC, IORING_OP_LAST,
}

Variants (Non-exhaustive)§

This enum is marked as 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.
§

IORING_OP_NOP

§

IORING_OP_READV

§

IORING_OP_WRITEV

§

IORING_OP_FSYNC

§

IORING_OP_READ_FIXED

§

IORING_OP_WRITE_FIXED

§

IORING_OP_POLL_ADD

§

IORING_OP_POLL_REMOVE

§

IORING_OP_SYNC_FILE_RANGE

§

IORING_OP_SENDMSG

§

IORING_OP_RECVMSG

§

IORING_OP_TIMEOUT

§

IORING_OP_TIMEOUT_REMOVE

§

IORING_OP_ACCEPT

§

IORING_OP_ASYNC_CANCEL

§

IORING_OP_CONNECT

§

IORING_OP_FALLOCATE

§

IORING_OP_OPENAT

§

IORING_OP_CLOSE

§

IORING_OP_FILES_UPDATE

§

IORING_OP_STATX

§

IORING_OP_READ

§

IORING_OP_WRITE

§

IORING_OP_FADVISE

§

IORING_OP_MADVISE

§

IORING_OP_SEND

§

IORING_OP_RECV

§

IORING_OP_OPENAT2

§

IORING_OP_EPOLL_CTL

§

IORING_OP_SPLICE

§

IORING_OP_PROVIDE_BUFFERS

§

IORING_OP_REMOVE_BUFFERS

§

IORING_OP_TEE

§

IORING_OP_SHUTDOWN

§

IORING_OP_RENAMEAT

§

IORING_OP_UNLINKAT

§

IORING_OP_MKDIRAT

§

IORING_OP_SYMLINKAT

§

IORING_OP_LINKAT

§

IORING_OP_MSG_RING

§

IORING_OP_FSETXATTR

§

IORING_OP_SETXATTR

§

IORING_OP_FGETXATTR

§

IORING_OP_GETXATTR

§

IORING_OP_SOCKET

§

IORING_OP_URING_CMD

§

IORING_OP_SEND_ZC

§

IORING_OP_SENDMSG_ZC

§

IORING_OP_LAST

Trait Implementations§

source§

impl Clone for io_uring_op

source§

fn clone(&self) -> io_uring_op

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 io_uring_op

source§

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

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

impl Hash for io_uring_op

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq<io_uring_op> for io_uring_op

source§

fn eq(&self, other: &io_uring_op) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for io_uring_op

source§

impl Eq for io_uring_op

source§

impl StructuralEq for io_uring_op

source§

impl StructuralPartialEq for io_uring_op

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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.