pub trait ApiSelection: Send + Sync {
    // Required methods
    fn raw_value(&self) -> &'static str;
    fn category() -> &'static str;
}

Required Methods§

source

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

source

fn category() -> &'static str

Implementors§