pub enum ForkJoinPhase {
Fork,
Join,
Done,
}Expand description
The global fork-join phase.
Variants§
Fork
Workers may be started and completed.
Join
All workers are complete and the barrier has committed.
Done
A stable output snapshot has been produced.
Trait Implementations§
Source§impl Clone for ForkJoinPhase
impl Clone for ForkJoinPhase
Source§fn clone(&self) -> ForkJoinPhase
fn clone(&self) -> ForkJoinPhase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ForkJoinPhase
Source§impl Debug for ForkJoinPhase
impl Debug for ForkJoinPhase
impl Eq for ForkJoinPhase
Source§impl PartialEq for ForkJoinPhase
impl PartialEq for ForkJoinPhase
impl StructuralPartialEq for ForkJoinPhase
Auto Trait Implementations§
impl Freeze for ForkJoinPhase
impl RefUnwindSafe for ForkJoinPhase
impl Send for ForkJoinPhase
impl Sync for ForkJoinPhase
impl Unpin for ForkJoinPhase
impl UnsafeUnpin for ForkJoinPhase
impl UnwindSafe for ForkJoinPhase
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