#[non_exhaustive]#[repr(C)]pub struct io_uring_napi {
pub busy_poll_to: u32,
pub prefer_busy_poll: u8,
pub opcode: u8,
pub op_param: u32,
/* private fields */
}Available on crate feature
io_uring only.Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.busy_poll_to: u32§prefer_busy_poll: u8§opcode: u8§op_param: u32Trait Implementations§
Source§impl Debug for io_uring_napi
impl Debug for io_uring_napi
Source§impl Default for io_uring_napi
impl Default for io_uring_napi
Source§fn default() -> io_uring_napi
fn default() -> io_uring_napi
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for io_uring_napi
impl RefUnwindSafe for io_uring_napi
impl Send for io_uring_napi
impl Sync for io_uring_napi
impl Unpin for io_uring_napi
impl UnwindSafe for io_uring_napi
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