Trait border_core::StepProcessorBase
source · [−]pub trait StepProcessorBase<E: Env> {
type Config: Clone;
type Output;
fn build(config: &Self::Config) -> Self;
fn reset(&mut self, init_obs: E::Obs);
fn process(&mut self, step: Step<E>) -> Self::Output;
}
Expand description
Process Step and output an item.