#[repr(C)]
pub struct ibv_wq {
Show 13 fields pub context: *mut ibv_context, pub wq_context: *mut c_void, pub pd: *mut ibv_pd, pub cq: *mut ibv_cq, pub wq_num: u32, pub handle: u32, pub state: Type, pub wq_type: Type, pub post_recv: Option<unsafe extern "C" fn(current: *mut ibv_wq, recv_wr: *mut ibv_recv_wr, bad_recv_wr: *mut *mut ibv_recv_wr) -> c_int>, pub mutex: pthread_mutex_t, pub cond: pthread_cond_t, pub events_completed: u32, pub comp_mask: u32,
}

Fields

context: *mut ibv_contextwq_context: *mut c_voidpd: *mut ibv_pdcq: *mut ibv_cqwq_num: u32handle: u32state: Typewq_type: Typepost_recv: Option<unsafe extern "C" fn(current: *mut ibv_wq, recv_wr: *mut ibv_recv_wr, bad_recv_wr: *mut *mut ibv_recv_wr) -> c_int>mutex: pthread_mutex_tcond: pthread_cond_tevents_completed: u32comp_mask: u32

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.