cosmic::widget::table::model::category

Trait ItemInterface

Source
pub trait ItemInterface<Category: ItemCategory> {
    // Required methods
    fn get_icon(&self, category: Category) -> Option<Icon>;
    fn get_text(&self, category: Category) -> Cow<'static, str>;
    fn compare(&self, other: &Self, category: Category) -> Ordering;
}

Required Methods§

Source

fn get_icon(&self, category: Category) -> Option<Icon>

Source

fn get_text(&self, category: Category) -> Cow<'static, str>

Source

fn compare(&self, other: &Self, category: Category) -> Ordering

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§