#[repr(C)]pub struct wqe_params_t {
pub laddr: usize,
pub lkey: u32,
pub length: usize,
pub wr_id: u64,
pub signaled: bool,
pub op_type: u32,
pub raddr: usize,
pub rkey: u32,
pub qp_num: u32,
pub buf: *mut u8,
pub dbrec: *mut u32,
pub wqe_cnt: u32,
}
Fields§
§laddr: usize
§lkey: u32
§length: usize
§wr_id: u64
§signaled: bool
§op_type: u32
§raddr: usize
§rkey: u32
§qp_num: u32
§buf: *mut u8
§dbrec: *mut u32
§wqe_cnt: u32
Trait Implementations§
Source§impl Clone for wqe_params_t
impl Clone for wqe_params_t
Source§fn clone(&self) -> wqe_params_t
fn clone(&self) -> wqe_params_t
Returns a duplicate 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 wqe_params_t
impl Debug for wqe_params_t
Source§impl Default for wqe_params_t
impl Default for wqe_params_t
impl Copy for wqe_params_t
Auto Trait Implementations§
impl Freeze for wqe_params_t
impl RefUnwindSafe for wqe_params_t
impl !Send for wqe_params_t
impl !Sync for wqe_params_t
impl Unpin for wqe_params_t
impl UnwindSafe for wqe_params_t
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