Trait MapReduce
Source pub trait MapReduce<T, Params = ()>:
Send
+ Sync
+ Debug
+ DynClone{
// Required methods
fn name(&self) -> &'static str;
fn run_with_params(&self, vec: &mut [T], params: Params) -> Result<T, Error>;
// Provided method
fn run(&self, vec: &mut [T]) -> Result<T, Error> { ... }
}
Performs copy-assignment from
source.
Read more
Performs copy-assignment from
source.
Read more
Performs copy-assignment from
source.
Read more
Performs copy-assignment from
source.
Read more