pub enum ReportReference<R0, R1, R2> {
This(R0),
That(R1),
Both(R2),
}Expand description
Reference for an enum.
Variants§
This(R0)
Enum variant for #names.
That(R1)
Enum variant for #names.
Both(R2)
Enum variant for #names.
Trait Implementations§
Source§impl<R0: Clone, R1: Clone, R2: Clone> Clone for ReportReference<R0, R1, R2>
impl<R0: Clone, R1: Clone, R2: Clone> Clone for ReportReference<R0, R1, R2>
Source§fn clone(&self) -> ReportReference<R0, R1, R2>
fn clone(&self) -> ReportReference<R0, R1, R2>
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 moreSource§impl<C0, C1, C2, R0, R1, R2> Push<ReportReference<R0, R1, R2>> for ReportContainer<C0, C1, C2>
impl<C0, C1, C2, R0, R1, R2> Push<ReportReference<R0, R1, R2>> for ReportContainer<C0, C1, C2>
Source§fn push(&mut self, item: ReportReference<R0, R1, R2>)
fn push(&mut self, item: ReportReference<R0, R1, R2>)
Pushes an item onto
self.Source§fn extend(&mut self, iter: impl IntoIterator<Item = T>)
fn extend(&mut self, iter: impl IntoIterator<Item = T>)
Pushes elements of an iterator onto
self.impl<R0: Copy, R1: Copy, R2: Copy> Copy for ReportReference<R0, R1, R2>
Auto Trait Implementations§
impl<R0, R1, R2> Freeze for ReportReference<R0, R1, R2>
impl<R0, R1, R2> RefUnwindSafe for ReportReference<R0, R1, R2>
impl<R0, R1, R2> Send for ReportReference<R0, R1, R2>
impl<R0, R1, R2> Sync for ReportReference<R0, R1, R2>
impl<R0, R1, R2> Unpin for ReportReference<R0, R1, R2>
impl<R0, R1, R2> UnsafeUnpin for ReportReference<R0, R1, R2>
impl<R0, R1, R2> UnwindSafe for ReportReference<R0, R1, R2>
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<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 moreSource§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign, for types that do not implement AddAssign.