pub enum GroupRelation {
Identical,
Similar,
Unequal,
}Expand description
How two groups relate (MPI_Group_compare).
Variants§
Identical
Same members in the same order.
Similar
Same members in a different order.
Unequal
The members differ.
Trait Implementations§
Source§impl Clone for GroupRelation
impl Clone for GroupRelation
Source§fn clone(&self) -> GroupRelation
fn clone(&self) -> GroupRelation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for GroupRelation
Source§impl Debug for GroupRelation
impl Debug for GroupRelation
impl Eq for GroupRelation
Source§impl PartialEq for GroupRelation
impl PartialEq for GroupRelation
Source§fn eq(&self, other: &GroupRelation) -> bool
fn eq(&self, other: &GroupRelation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GroupRelation
Auto Trait Implementations§
impl Freeze for GroupRelation
impl RefUnwindSafe for GroupRelation
impl Send for GroupRelation
impl Sync for GroupRelation
impl Unpin for GroupRelation
impl UnsafeUnpin for GroupRelation
impl UnwindSafe for GroupRelation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more