Trait mpi::datatype::Buffer
[−]
[src]
pub unsafe trait Buffer: Pointer + Collection + AsDatatype { }
A buffer is a region in memory that starts at pointer()
and contains count()
copies of
as_datatype()
.
Implementors
impl<T> Buffer for T where T: Equivalence
impl<T> Buffer for [T] where T: Equivalence
impl<'d, 'b, D, B: ?Sized> Buffer for View<'d, 'b, D, B> where D: 'd + Datatype,
B: 'b + Pointer