pub struct TurnLog<P: EffectProvider + ?Sized> {
pub events: Vec<TurnEvent<P>>,
}Expand description
An ordered log of TurnEvents for one stack-driven turn.
Fields§
§events: Vec<TurnEvent<P>>The events, in the order they occurred this turn.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for TurnLog<P>
impl<P> RefUnwindSafe for TurnLog<P>
impl<P> Send for TurnLog<P>
impl<P> Sync for TurnLog<P>
impl<P> Unpin for TurnLog<P>
impl<P> UnsafeUnpin for TurnLog<P>
impl<P> UnwindSafe for TurnLog<P>
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