Trait mpi::datatype::Partitioned [] [src]

pub trait Partitioned {
    fn counts(&self) -> &[Count];
fn displs(&self) -> &[Count]; unsafe fn counts_ptr(&self) -> *const Count { ... }
unsafe fn displs_ptr(&self) -> *const Count { ... } }

Describes how a Buffer is partitioned by specifying the count of elements and displacement from the start of the buffer for each partition.

Required Methods

The count of elements in each partition.

The displacement from the start of the buffer for each partition.

Provided Methods

A pointer to counts()

A pointer to displs()

Implementors