1 2 3 4 5
pub trait ProbaSelection<T: Clone> { fn push(&self, proba: f32, data: T); fn pop(&self) -> Option<T>; }