#[repr(C)]pub struct ibv_mr {
pub context: *mut ibv_context,
pub pd: *mut ibv_pd,
pub addr: *mut c_void,
pub length: usize,
pub handle: u32,
pub lkey: u32,
pub rkey: u32,
}
Fields§
§context: *mut ibv_context
§pd: *mut ibv_pd
§addr: *mut c_void
§length: usize
§handle: u32
§lkey: u32
§rkey: u32
Trait Implementations§
impl Copy for ibv_mr
Auto Trait Implementations§
impl Freeze for ibv_mr
impl RefUnwindSafe for ibv_mr
impl !Send for ibv_mr
impl !Sync for ibv_mr
impl Unpin for ibv_mr
impl UnwindSafe for ibv_mr
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