#[repr(C)]pub struct ibv_qp {Show 13 fields
pub context: *mut ibv_context,
pub qp_context: *mut c_void,
pub pd: *mut ibv_pd,
pub send_cq: *mut ibv_cq,
pub recv_cq: *mut ibv_cq,
pub srq: *mut ibv_srq,
pub handle: u32,
pub qp_num: u32,
pub state: Type,
pub qp_type: Type,
pub mutex: pthread_mutex_t,
pub cond: pthread_cond_t,
pub events_completed: u32,
}
Fields§
§context: *mut ibv_context
§qp_context: *mut c_void
§pd: *mut ibv_pd
§send_cq: *mut ibv_cq
§recv_cq: *mut ibv_cq
§srq: *mut ibv_srq
§handle: u32
§qp_num: u32
§state: Type
§qp_type: Type
§mutex: pthread_mutex_t
§cond: pthread_cond_t
§events_completed: u32
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ibv_qp
impl RefUnwindSafe for ibv_qp
impl !Send for ibv_qp
impl !Sync for ibv_qp
impl Unpin for ibv_qp
impl UnwindSafe for ibv_qp
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