pub struct ScopeFifo<'scope> { /* private fields */ }
Expand description
Represents a fork-join scope which can be used to spawn any number of tasks.
Those spawned from the same thread are prioritized in relative FIFO order.
See scope_fifo()
for more information.
Implementations
sourceimpl<'scope> ScopeFifo<'scope>
impl<'scope> ScopeFifo<'scope>
sourcepub fn spawn_fifo<BODY>(&self, body: BODY) where
BODY: 'scope + FnOnce(&ScopeFifo<'scope>) + Send,
pub fn spawn_fifo<BODY>(&self, body: BODY) where
BODY: 'scope + FnOnce(&ScopeFifo<'scope>) + Send,
Spawns a job into the fork-join scope self
. This job will
execute sometime before the fork-join scope completes. The
job is specified as a closure, and this closure receives its
own reference to the scope self
as argument. This can be
used to inject new jobs into self
.
See also
This method is akin to Scope::spawn()
, but with a FIFO
priority. The scope_fifo
function has more details about
this distinction.
Trait Implementations
Auto Trait Implementations
impl<'scope> !RefUnwindSafe for ScopeFifo<'scope>
impl<'scope> Send for ScopeFifo<'scope>
impl<'scope> Sync for ScopeFifo<'scope>
impl<'scope> Unpin for ScopeFifo<'scope>
impl<'scope> !UnwindSafe for ScopeFifo<'scope>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more