Enum style::parallel::DispatchMode
[−]
[src]
pub enum DispatchMode { TailCall, NotTailCall, }
Controls whether traverse_nodes may make a recursive call to continue doing work, or whether it should always dispatch work asynchronously.
Variants
TailCall
This is the last operation by the caller.
NotTailCall
This is not the last operation by the caller.
Trait Implementations
impl Clone for DispatchMode
[src]
fn clone(&self) -> DispatchMode
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more