pub trait ControllerFactory {
    fn build(&self, now: Instant) -> Box<dyn Controller>;
}
Expand description

Constructs controllers on demand

Required Methods

Construct a fresh Controller

Implementations on Foreign Types

Implementors