pub struct TurnSummary<TRng> {
pub shot_result: Option<ShotResult>,
pub round_continuation: RoundContinuation<TRng>,
}
Fields§
§shot_result: Option<ShotResult>
§round_continuation: RoundContinuation<TRng>
Trait Implementations§
Source§impl<TRng: Clone> Clone for TurnSummary<TRng>
impl<TRng: Clone> Clone for TurnSummary<TRng>
Source§fn clone(&self) -> TurnSummary<TRng>
fn clone(&self) -> TurnSummary<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 TurnSummary<TRng>where
TRng: Freeze,
impl<TRng> RefUnwindSafe for TurnSummary<TRng>where
TRng: RefUnwindSafe,
impl<TRng> Send for TurnSummary<TRng>where
TRng: Send,
impl<TRng> Sync for TurnSummary<TRng>where
TRng: Sync,
impl<TRng> Unpin for TurnSummary<TRng>where
TRng: Unpin,
impl<TRng> UnwindSafe for TurnSummary<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