#[repr(C)]pub struct io_uring_sqe {Show 13 fields
pub opcode: u8,
pub flags: u8,
pub ioprio: u16,
pub fd: i32,
pub __bindgen_anon_1: io_uring_sqe__bindgen_ty_1,
pub __bindgen_anon_2: io_uring_sqe__bindgen_ty_2,
pub len: u32,
pub __bindgen_anon_3: io_uring_sqe__bindgen_ty_3,
pub user_data: u64,
pub __bindgen_anon_4: io_uring_sqe__bindgen_ty_4,
pub personality: u16,
pub __bindgen_anon_5: io_uring_sqe__bindgen_ty_5,
pub __bindgen_anon_6: io_uring_sqe__bindgen_ty_6,
}Fields§
§opcode: u8§flags: u8§ioprio: u16§fd: i32§__bindgen_anon_1: io_uring_sqe__bindgen_ty_1§__bindgen_anon_2: io_uring_sqe__bindgen_ty_2§len: u32§__bindgen_anon_3: io_uring_sqe__bindgen_ty_3§user_data: u64§__bindgen_anon_4: io_uring_sqe__bindgen_ty_4§personality: u16§__bindgen_anon_5: io_uring_sqe__bindgen_ty_5§__bindgen_anon_6: io_uring_sqe__bindgen_ty_6Trait Implementations§
Source§impl Default for io_uring_sqe
impl Default for io_uring_sqe
Source§fn default() -> io_uring_sqe
fn default() -> io_uring_sqe
Returns the “default value” for a type. Read more
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
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more