pub trait GainSTMOp: Operation {
    // Required method
    fn new<F>(
        drives: Vec<Vec<Drive, Global>, Global>,
        props: GainSTMProps,
        cycles_fn: F
    ) -> Self
       where F: Fn() -> Vec<u16, Global>;
}

Required Methods§

source

fn new<F>( drives: Vec<Vec<Drive, Global>, Global>, props: GainSTMProps, cycles_fn: F ) -> Selfwhere F: Fn() -> Vec<u16, Global>,

Implementors§