Struct nc::types::io_uring_sqe_t[][src]

#[repr(C)]
pub struct io_uring_sqe_t { pub opcode: IOURING_OP, pub flags: u8, pub ioprio: u16, pub fd: i32, pub file_off: io_uring_sqe_file_off_t, pub buf_addr: io_uring_sqe_buf_addr_t, pub len: u32, pub other_flags: io_uring_sqe_other_flags_t, pub user_data: u64, pub opt_buf: io_uring_sqe_opt_buf_t, }
Expand description

IO submission data structure (Submission Queue Entry)

Fields

opcode: IOURING_OP

type of operation for this sqe

flags: u8

IOSQE_ flags

ioprio: u16

ioprio for the request

fd: i32

file descriptor to do IO on

file_off: io_uring_sqe_file_off_tbuf_addr: io_uring_sqe_buf_addr_tlen: u32

buffer size or number of iovecs

other_flags: io_uring_sqe_other_flags_tuser_data: u64

data to be passed back at completion time

opt_buf: io_uring_sqe_opt_buf_t

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.