pub trait ApiSelection: Send + Sync + 'static {
    type Response: From<ApiResponse> + Send + Sync;

    // Required methods
    fn raw_value(self) -> &'static str;
    fn category() -> &'static str;
}

Required Associated Types§

Required Methods§

source

fn raw_value(self) -> &'static str

source

fn category() -> &'static str

Object Safety§

This trait is not object safe.

Implementors§