pub trait RemoteMrReadAccess: MrAccess {
    fn token(&self) -> MrToken;

    fn timeout_check(&self) -> bool { ... }
}
Expand description

Remote Memory Region Accrss

Required Methods

Get the token of this rmr

Provided Methods

Check if this rmr timeout. Return true if it times out, false otherwise.

Implementors