cosmic::widget::table::model::selection

Trait Selectable

Source
pub trait Selectable {
    // Required methods
    fn activate(&mut self, id: Entity);
    fn deactivate(&mut self, id: Entity);
    fn is_active(&self, id: Entity) -> bool;
}
Expand description

Describes a type that has selectable items.

Required Methods§

Source

fn activate(&mut self, id: Entity)

Activate an item.

Source

fn deactivate(&mut self, id: Entity)

Deactivate an item.

Source

fn is_active(&self, id: Entity) -> bool

Checks if the item is active.

Implementors§

Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Selectable for Model<MultiSelect, Item, Category>

Source§

impl<Item: ItemInterface<Category>, Category: ItemCategory> Selectable for Model<SingleSelect, Item, Category>