#[repr(C)]pub struct io_uring_cq {
pub khead: *mut c_uint,
pub ktail: *mut c_uint,
pub kring_mask: *mut c_uint,
pub kring_entries: *mut c_uint,
pub koverflow: *mut c_uint,
pub cqes: *mut io_uring_cqe,
pub ring_sz: usize,
pub ring_ptr: *mut c_void,
}
Fields§
§khead: *mut c_uint
§ktail: *mut c_uint
§kring_mask: *mut c_uint
§kring_entries: *mut c_uint
§koverflow: *mut c_uint
§cqes: *mut io_uring_cqe
§ring_sz: usize
§ring_ptr: *mut c_void
Trait Implementations§
Source§impl Clone for io_uring_cq
impl Clone for io_uring_cq
Source§fn clone(&self) -> io_uring_cq
fn clone(&self) -> io_uring_cq
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 io_uring_cq
impl Debug for io_uring_cq
impl Copy for io_uring_cq
Auto Trait Implementations§
impl Freeze for io_uring_cq
impl RefUnwindSafe for io_uring_cq
impl !Send for io_uring_cq
impl !Sync for io_uring_cq
impl Unpin for io_uring_cq
impl UnwindSafe for io_uring_cq
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