Trait mpi::request::Scope

source ·
pub unsafe trait Scope<'a> {
    fn register(&self);
    unsafe fn unregister(&self);
}
Expand description

A common interface for LocalScope and StaticScope used internally by the request module.

This trait is an implementation detail. You shouldn’t have to use or implement this trait.

Required Methods

Registers a request with the scope.

Unregisters a request from the scope.

Implementors