pub trait IndicatorConfig {
type Indicator: Next<f64>;
// Required method
fn build(&self) -> Self::Indicator;
}Expand description
A trait for indicator configurations that can build their respective streaming state machines.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".