Trait mpi::datatype::Equivalence [] [src]

pub unsafe trait Equivalence {
    type Out: Datatype;
    fn equivalent_datatype() -> Self::Out;
}

A direct equivalence exists between the implementing type and an MPI datatype

Standard section(s)

3.2.2

Associated Types

The type of the equivalent MPI datatype (e.g. SystemDatatype or UserDatatype)

Required Methods

The MPI datatype that is equivalent to this Rust type

Implementations on Foreign Types

impl Equivalence for bool
[src]

impl Equivalence for f32
[src]

impl Equivalence for f64
[src]

impl Equivalence for i8
[src]

impl Equivalence for i16
[src]

impl Equivalence for i32
[src]

impl Equivalence for i64
[src]

impl Equivalence for u8
[src]

impl Equivalence for u16
[src]

impl Equivalence for u32
[src]

impl Equivalence for u64
[src]

impl Equivalence for usize
[src]

impl Equivalence for isize
[src]

Implementors