pub struct ContinuedRound<TRng> {
pub turn_continuation: TurnContinuation,
pub round: Round<TRng>,
}
Fields§
§turn_continuation: TurnContinuation
§round: Round<TRng>
Trait Implementations§
Source§impl<TRng: Clone> Clone for ContinuedRound<TRng>
impl<TRng: Clone> Clone for ContinuedRound<TRng>
Source§fn clone(&self) -> ContinuedRound<TRng>
fn clone(&self) -> ContinuedRound<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 ContinuedRound<TRng>where
TRng: Freeze,
impl<TRng> RefUnwindSafe for ContinuedRound<TRng>where
TRng: RefUnwindSafe,
impl<TRng> Send for ContinuedRound<TRng>where
TRng: Send,
impl<TRng> Sync for ContinuedRound<TRng>where
TRng: Sync,
impl<TRng> Unpin for ContinuedRound<TRng>where
TRng: Unpin,
impl<TRng> UnwindSafe for ContinuedRound<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