pub trait PossibleValues: Sized + Clone + Eq {
    fn get_possible_values() -> Vec<(Self, f32)>;
}
Expand description

This trait needs to be implemented for all types used in microwfc to allow microwfc to know the superposition. A value can be added multiple times.

Required Methods§

Implementors§