Struct mpi::request::WaitGuard
[−]
[src]
pub struct WaitGuard<'a, S: Scope<'a>>(_);
Guard object that waits for the completion of an operation when it is dropped
The guard can be constructed or deconstructed using the From
and Into
traits.
Examples
See examples/immediate.rs
Trait Implementations
impl<'a, S: Debug + Scope<'a>> Debug for WaitGuard<'a, S>
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl<'a, S: Scope<'a>> Drop for WaitGuard<'a, S>
[src]
impl<'a, S: Scope<'a>> AsRaw for WaitGuard<'a, S>
[src]
impl<'a, S: Scope<'a>> From<WaitGuard<'a, S>> for Request<'a, S>
[src]
impl<'a, S: Scope<'a>> From<Request<'a, S>> for WaitGuard<'a, S>
[src]
impl<'a, S: Scope<'a>> From<CancelGuard<'a, S>> for WaitGuard<'a, S>
[src]
fn from(guard: CancelGuard<'a, S>) -> Self
[src]
Performs the conversion.