Struct mpi::datatype::PartitionMut
source · pub struct PartitionMut<'b, B: 'b + ?Sized, C, D> { /* private fields */ }
Expand description
Adds a partitioning to an existing BufferMut
so that it becomes Partitioned
Implementations
Trait Implementations
sourceimpl<'b, B: ?Sized, C, D> AsDatatype for PartitionMut<'b, B, C, D>where
B: 'b + AsDatatype,
impl<'b, B: ?Sized, C, D> AsDatatype for PartitionMut<'b, B, C, D>where
B: 'b + AsDatatype,
type Out = <B as AsDatatype>::Out
type Out = <B as AsDatatype>::Out
The type of the associated MPI datatype (e.g.
SystemDatatype
or UserDatatype
)sourcefn as_datatype(&self) -> Self::Out
fn as_datatype(&self) -> Self::Out
The associated MPI datatype
sourceimpl<'b, B: ?Sized, C, D> Partitioned for PartitionMut<'b, B, C, D>where
B: 'b,
C: Borrow<[Count]>,
D: Borrow<[Count]>,
impl<'b, B: ?Sized, C, D> Partitioned for PartitionMut<'b, B, C, D>where
B: 'b,
C: Borrow<[Count]>,
D: Borrow<[Count]>,
sourceunsafe fn counts_ptr(&self) -> *const Count
unsafe fn counts_ptr(&self) -> *const Count
A pointer to
counts()
sourceunsafe fn displs_ptr(&self) -> *const Count
unsafe fn displs_ptr(&self) -> *const Count
A pointer to
displs()
sourceimpl<'b, B: ?Sized, C, D> PointerMut for PartitionMut<'b, B, C, D>where
B: 'b + PointerMut,
impl<'b, B: ?Sized, C, D> PointerMut for PartitionMut<'b, B, C, D>where
B: 'b + PointerMut,
sourceunsafe fn pointer_mut(&mut self) -> *mut c_void
unsafe fn pointer_mut(&mut self) -> *mut c_void
A mutable pointer to the starting address in memory
impl<'b, B: ?Sized, C, D> PartitionedBufferMut for PartitionMut<'b, B, C, D>where
B: 'b + PointerMut + AsDatatype,
C: Borrow<[Count]>,
D: Borrow<[Count]>,
Auto Trait Implementations
impl<'b, B: ?Sized, C, D> RefUnwindSafe for PartitionMut<'b, B, C, D>where
B: RefUnwindSafe,
C: RefUnwindSafe,
D: RefUnwindSafe,
impl<'b, B: ?Sized, C, D> Send for PartitionMut<'b, B, C, D>where
B: Send,
C: Send,
D: Send,
impl<'b, B: ?Sized, C, D> Sync for PartitionMut<'b, B, C, D>where
B: Sync,
C: Sync,
D: Sync,
impl<'b, B: ?Sized, C, D> Unpin for PartitionMut<'b, B, C, D>where
C: Unpin,
D: Unpin,
impl<'b, B, C, D> !UnwindSafe for PartitionMut<'b, B, C, D>
Blanket Implementations
sourceimpl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
impl<Src, Scheme> ApproxFrom<Src, Scheme> for Srcwhere
Scheme: ApproxScheme,
sourcefn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
fn approx_from(src: Src) -> Result<Src, <Src as ApproxFrom<Src, Scheme>>::Err>
Convert the given value into an approximately equivalent representation.
sourceimpl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
impl<Dst, Src, Scheme> ApproxInto<Dst, Scheme> for Srcwhere
Dst: ApproxFrom<Src, Scheme>,
Scheme: ApproxScheme,
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
type Err = <Dst as ApproxFrom<Src, Scheme>>::Err
The error type produced by a failed conversion.
sourcefn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
fn approx_into(self) -> Result<Dst, <Src as ApproxInto<Dst, Scheme>>::Err>
Convert the subject into an approximately equivalent representation.
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T, Dst> ConvAsUtil<Dst> for T
impl<T, Dst> ConvAsUtil<Dst> for T
sourcefn approx(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
fn approx(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
Approximate the subject with the default scheme.
sourcefn approx_by<Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_by<Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject with a specific scheme.
sourceimpl<T> ConvUtil for T
impl<T> ConvUtil for T
sourcefn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
fn approx_as<Dst>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, DefaultApprox>,
Approximate the subject to a given type with the default scheme.
sourcefn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
fn approx_as_by<Dst, Scheme>(self) -> Result<Dst, Self::Err>where
Self: Sized + ApproxInto<Dst, Scheme>,
Scheme: ApproxScheme,
Approximate the subject to a given type with a specific scheme.
sourcefn into_as<Dst>(self) -> Dstwhere
Self: Sized + Into<Dst>,
fn into_as<Dst>(self) -> Dstwhere
Self: Sized + Into<Dst>,
Convert the subject to a given type.