pub trait Get<U: UniqueIdentifier> {
    // Required method
    fn get(&self) -> Option<Vec<f64>>;
}

Required Methods§

source

fn get(&self) -> Option<Vec<f64>>

Implementors§

source§

impl<T, U> Get<U> for DiscreteModalSolver<T>
where T: Solver + Default, U: 'static + UniqueIdentifier,