pub struct io_uring_sqe {
pub opcode: u8,
pub flags: u8,
pub ioprio: u16,
pub fd: RawFd,
pub off: u64,
pub addr: u64,
pub len: u32,
pub op_flags: u32,
pub user_data: u64,
pub buf_index_or_group: u16,
pub personality: u16,
pub splice_fd_in_or_file_index: u32,
/* private fields */
}Fields§
§opcode: u8§flags: u8§ioprio: u16§fd: RawFd§off: u64§addr: u64§len: u32§op_flags: u32§user_data: u64§buf_index_or_group: u16§personality: u16§splice_fd_in_or_file_index: u32Trait Implementations§
Source§impl Clone for io_uring_sqe
impl Clone for io_uring_sqe
Source§fn clone(&self) -> io_uring_sqe
fn clone(&self) -> io_uring_sqe
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for io_uring_sqe
Auto Trait Implementations§
impl Freeze for io_uring_sqe
impl RefUnwindSafe for io_uring_sqe
impl Send for io_uring_sqe
impl Sync for io_uring_sqe
impl Unpin for io_uring_sqe
impl UnwindSafe for io_uring_sqe
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more