Trait mpi::request::Scope
[−]
[src]
pub unsafe trait Scope<'a> {
fn register(&self);
unsafe fn unregister(&self);
}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
fn register(&self)
Registers a request with the scope.
unsafe fn unregister(&self)
Unregisters a request from the scope.
Implementors
impl Scope<'static> for StaticScopeimpl<'a, 'b> Scope<'a> for &'b LocalScope<'a>