#[repr(C)]pub struct IoUringParams {
pub sq_entries: c_uint,
pub cq_entries: c_uint,
pub flags: SetupFlags,
pub sq_thread_cpu: c_uint,
pub sq_thread_idle: c_uint,
pub features: FeatureFlags,
pub wq_fd: c_uint,
pub resv: [c_uint; 3],
pub sq_off: IoSqringOffsets,
pub cq_off: IoCqringOffsets,
}
Fields§
§sq_entries: c_uint
§cq_entries: c_uint
§flags: SetupFlags
§sq_thread_cpu: c_uint
§sq_thread_idle: c_uint
§features: FeatureFlags
§wq_fd: c_uint
§resv: [c_uint; 3]
§sq_off: IoSqringOffsets
§cq_off: IoCqringOffsets
Trait Implementations§
Source§impl Clone for IoUringParams
impl Clone for IoUringParams
Source§fn clone(&self) -> IoUringParams
fn clone(&self) -> IoUringParams
Returns a copy 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 moreSource§impl Debug for IoUringParams
impl Debug for IoUringParams
Source§impl Default for IoUringParams
impl Default for IoUringParams
Source§fn default() -> IoUringParams
fn default() -> IoUringParams
Returns the “default value” for a type. Read more
impl Copy for IoUringParams
Auto Trait Implementations§
impl Freeze for IoUringParams
impl RefUnwindSafe for IoUringParams
impl Send for IoUringParams
impl Sync for IoUringParams
impl Unpin for IoUringParams
impl UnwindSafe for IoUringParams
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