pub trait SelectValue: Sized + Copy + PartialEq { // Required methods fn next(&self) -> Self; fn name(&self) -> &'static str; }