pub trait Model {
    // Required method
    fn get(&self, x: f32) -> f32;
}

Required Methods§

source

fn get(&self, x: f32) -> f32

Implementors§