Selector

Trait Selector 

Source
pub trait Selector: Send + Sync {
    // Required method
    fn should_select(&self, index: usize, item: &dyn SkimItem) -> bool;
}
Expand description

A selector that determines whether an item should be “pre-selected” in multi-selection mode

Required Methods§

Source

fn should_select(&self, index: usize, item: &dyn SkimItem) -> bool

Implementors§