Trait mpi::datatype::BufferMut
[−]
[src]
pub unsafe trait BufferMut: PointerMut + Collection + AsDatatype { }
A mutable buffer is a region in memory that starts at pointer_mut()
and contains count()
copies of as_datatype()
.
Implementations on Foreign Types
impl<T> BufferMut for [T] where
T: Equivalence,
[src]
T: Equivalence,
Implementors
impl<T> BufferMut for T where
T: Equivalence,impl<'a> BufferMut for DynBufferMut<'a>
impl<'d, 'b, D, B: ?Sized> BufferMut for MutView<'d, 'b, D, B> where
D: 'd + Datatype,
B: 'b + PointerMut,