pub trait Next<Input> {
type Output;
// Required method
fn next(&mut self, input: Input) -> Self::Output;
}Expand description
The core trait for streaming indicators. Every indicator maintains an internal state and processes data points one by one.