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

    fn token(&self) -> MrToken { ... }
}
Expand description

Rdma Memory Region Access

Required Methods

Get the start addr

Get the length

Get the remote key

Provided Methods

Get the token

Implementors