pub trait MrAccess: Sync + Send + Debug + IbvAccess {
    fn addr(&self) -> usize;
    fn length(&self) -> usize;
    fn rkey(&self) -> u32;

    fn access(&self) -> BitFlags<AccessFlag> { ... }
}
Expand description

Rdma Memory Region Access

Required Methods

Get the start addr

Get the length

Get the remote key

Provided Methods

Get the BitFlags<AccessFlag> of mr

Implementors