Trait mpi::datatype::AsDatatype [] [src]

pub unsafe trait AsDatatype {
    type Out: Datatype;
    fn as_datatype(&self) -> Self::Out;
}

Something that has an associated datatype

Associated Types

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

Required Methods

The associated MPI datatype

Implementations on Foreign Types

impl<T> AsDatatype for [T] where
    T: Equivalence
[src]

[src]

Implementors