#[repr(C)]pub struct completion_cache {
pub nodes: [completion_node_t; 128],
pub head: c_int,
pub tail: c_int,
pub free_head: c_int,
pub count: usize,
pub lock: pthread_mutex_t,
}Fields§
§nodes: [completion_node_t; 128]§head: c_int§tail: c_int§free_head: c_int§count: usize§lock: pthread_mutex_tTrait Implementations§
Auto Trait Implementations§
impl Freeze for completion_cache
impl RefUnwindSafe for completion_cache
impl !Send for completion_cache
impl !Sync for completion_cache
impl Unpin for completion_cache
impl UnwindSafe for completion_cache
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