Skip to main content

ComboboxChange

Type Alias ComboboxChange 

Source
pub type ComboboxChange = SearchableListChange;
Expand description

Back-compat alias — new code should use SearchableListChange directly.

Aliased Type§

pub enum ComboboxChange {
    Select {
        index: IndexPath,
    },
    Deselect {
        index: IndexPath,
    },
}

Variants§

§

Select

Select the item at the given index path.

Fields

§

Deselect

Deselect the item at the given index path.

Fields