Factory

Trait Factory 

Source
pub trait Factory {
    // Required method
    fn create() -> Box<dyn Next<f64, Output = Box<[f64]>>>;
}
Expand description

Factory trait to create indicator

Required Methods§

Source

fn create() -> Box<dyn Next<f64, Output = Box<[f64]>>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§