pub trait Factory {
// Required method
fn create() -> Box<dyn Next<f64, Output = Box<[f64]>>>;
}Expand description
Factory trait to create indicator
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".