Trait mpi::raw::AsRaw [] [src]

pub unsafe trait AsRaw {
    type Raw;
    fn as_raw(&self) -> Self::Raw;
}

A rust type than can identify as a raw value understood by the MPI C API.

Associated Types

The raw MPI C API type

Required Methods

The raw value

Implementations on Foreign Types

impl<'a, T> AsRaw for &'a T where
    T: 'a + AsRaw
[src]

[src]

Implementors