pub enum RoundContinuation<TRng> {
RoundContinues(ContinuedRound<TRng>),
RoundEnds(FinishedRound<TRng>),
}
Variants§
RoundContinues(ContinuedRound<TRng>)
RoundEnds(FinishedRound<TRng>)
Trait Implementations§
Source§impl<TRng: Clone> Clone for RoundContinuation<TRng>
impl<TRng: Clone> Clone for RoundContinuation<TRng>
Source§fn clone(&self) -> RoundContinuation<TRng>
fn clone(&self) -> RoundContinuation<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 RoundContinuation<TRng>where
TRng: Freeze,
impl<TRng> RefUnwindSafe for RoundContinuation<TRng>where
TRng: RefUnwindSafe,
impl<TRng> Send for RoundContinuation<TRng>where
TRng: Send,
impl<TRng> Sync for RoundContinuation<TRng>where
TRng: Sync,
impl<TRng> Unpin for RoundContinuation<TRng>where
TRng: Unpin,
impl<TRng> UnwindSafe for RoundContinuation<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