Trait batch_processing::sync::step::Runner

source ·
pub trait Runner
where Self: Sized,
{ type Output; // Required method fn run(self) -> Self::Output; }
Expand description

A trait for objects that can be executed.

Required Associated Types§

source

type Output

The type of output produced by the execution.

Required Methods§

source

fn run(self) -> Self::Output

Executes the object and returns the output.

Object Safety§

This trait is not object safe.

Implementors§