pub struct GroupIdentifier(pub usize);Tuple Fields§
§0: usizeTrait Implementations§
Source§impl AddAssign<usize> for GroupIdentifier
impl AddAssign<usize> for GroupIdentifier
Source§fn add_assign(&mut self, rhs: usize)
fn add_assign(&mut self, rhs: usize)
Performs the
+= operation. Read moreSource§impl Clone for GroupIdentifier
impl Clone for GroupIdentifier
Source§fn clone(&self) -> GroupIdentifier
fn clone(&self) -> GroupIdentifier
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GroupIdentifier
impl Debug for GroupIdentifier
Source§impl Display for GroupIdentifier
impl Display for GroupIdentifier
Source§impl Hash for GroupIdentifier
impl Hash for GroupIdentifier
Source§impl Ord for GroupIdentifier
impl Ord for GroupIdentifier
Source§fn cmp(&self, other: &GroupIdentifier) -> Ordering
fn cmp(&self, other: &GroupIdentifier) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GroupIdentifier
impl PartialEq for GroupIdentifier
Source§impl PartialOrd for GroupIdentifier
impl PartialOrd for GroupIdentifier
Source§impl Serialize for GroupIdentifier
impl Serialize for GroupIdentifier
impl Copy for GroupIdentifier
impl Eq for GroupIdentifier
impl StructuralPartialEq for GroupIdentifier
Auto Trait Implementations§
impl Freeze for GroupIdentifier
impl RefUnwindSafe for GroupIdentifier
impl Send for GroupIdentifier
impl Sync for GroupIdentifier
impl Unpin for GroupIdentifier
impl UnwindSafe for GroupIdentifier
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more