Trait mpi::raw::AsRaw

source ·
pub unsafe trait AsRaw {
    type Raw;

    // Required method
    fn as_raw(&self) -> Self::Raw;
}
Expand description

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

Required Associated Types§

source

type Raw

The raw MPI C API type

Required Methods§

source

fn as_raw(&self) -> Self::Raw

The raw value

Implementations on Foreign Types§

source§

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

§

type Raw = <T as AsRaw>::Raw

source§

fn as_raw(&self) -> Self::Raw

Implementors§