pub struct CallState<'a, S: Simulation + ?Sized, D: PlayDirection> {
pub callables: Box<[S::Event]>,
/* private fields */
}
Expand description
A temporary object for selecting an event to call.
Fields§
§callables: Box<[S::Event]>
A slice of indices of the current callable events.
Implementations§
Auto Trait Implementations§
impl<'a, S, D> Freeze for CallState<'a, S, D>
impl<'a, S, D> RefUnwindSafe for CallState<'a, S, D>
impl<'a, S, D> Send for CallState<'a, S, D>
impl<'a, S, D> Sync for CallState<'a, S, D>
impl<'a, S, D> Unpin for CallState<'a, S, D>
impl<'a, S, D> !UnwindSafe for CallState<'a, S, D>
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