pub enum FinishedRoundOrRng<TRng> {
FinishedRound(FinishedRound<TRng>),
Rng(TRng),
}
Variants§
FinishedRound(FinishedRound<TRng>)
Rng(TRng)
Trait Implementations§
Source§impl<TRng: Clone> Clone for FinishedRoundOrRng<TRng>
impl<TRng: Clone> Clone for FinishedRoundOrRng<TRng>
Source§fn clone(&self) -> FinishedRoundOrRng<TRng>
fn clone(&self) -> FinishedRoundOrRng<TRng>
Returns a copy 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 moreAuto Trait Implementations§
impl<TRng> Freeze for FinishedRoundOrRng<TRng>where
TRng: Freeze,
impl<TRng> RefUnwindSafe for FinishedRoundOrRng<TRng>where
TRng: RefUnwindSafe,
impl<TRng> Send for FinishedRoundOrRng<TRng>where
TRng: Send,
impl<TRng> Sync for FinishedRoundOrRng<TRng>where
TRng: Sync,
impl<TRng> Unpin for FinishedRoundOrRng<TRng>where
TRng: Unpin,
impl<TRng> UnwindSafe for FinishedRoundOrRng<TRng>where
TRng: UnwindSafe,
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