Category

Trait Category 

Source
pub trait Category: Send + Sync {
    // Required methods
    fn get_name(&self) -> &str;
    fn get_description(&self) -> &str;

    // Provided methods
    fn color_hint(&self) -> Option<&str> { ... }
    fn priority(&self) -> i32 { ... }
}

Required Methods§

Source

fn get_name(&self) -> &str

Source

fn get_description(&self) -> &str

Provided Methods§

Source

fn color_hint(&self) -> Option<&str>

Source

fn priority(&self) -> i32

Implementors§