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

Required Methods§

source

fn next(&self) -> Self

source

fn name(&self) -> &'static str

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl SelectValue for bool

source§

fn next(&self) -> Self

source§

fn name(&self) -> &'static str

Implementors§