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§
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
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.