Trait ParallelRunnable

Source
pub trait ParallelRunnable:
    Runnable
    + Send
    + Sync { }
Expand description

A Runnable which is also Send and Sync.

Trait Implementations§

Source§

impl Debug for dyn ParallelRunnable

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Implementors§

Source§

impl<T> ParallelRunnable for T
where T: Runnable + Send + Sync,