pub struct SimulationTask {
pub seed: u64,
pub index: usize,
}Expand description
Individual simulation task for work-stealing scheduler.
Fields§
§seed: u64Random seed for this trajectory.
index: usizeTask index.
Trait Implementations§
Source§impl Clone for SimulationTask
impl Clone for SimulationTask
Source§fn clone(&self) -> SimulationTask
fn clone(&self) -> SimulationTask
Returns a duplicate 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 Freeze for SimulationTask
impl RefUnwindSafe for SimulationTask
impl Send for SimulationTask
impl Sync for SimulationTask
impl Unpin for SimulationTask
impl UnsafeUnpin for SimulationTask
impl UnwindSafe for SimulationTask
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