[−][src]Enum conrod_core::widget::list_select::Selection
pub enum Selection<H: BuildHasher = RandomState> { Add(HashSet<usize, H>), Remove(HashSet<usize, H>), }
Represents some change in item selection for a ListSelect
in Multiple
mode.
Variants
Items which have been added to the selection.
Items which have been removed from the selection.
Implementations
impl<H: BuildHasher> Selection<H>
[src][−]
pub fn update_bool_slice(&self, slice: &mut [bool])
[src][−]
Update the given slice of bool
s with this Selection
.
Each index in the Selection
represents and index into the slice.
pub fn update_index_set<T>(&self, set: &mut HashSet<usize, T>) where
T: BuildHasher,
[src][−]
T: BuildHasher,
Update the given set of selected indices with this Selection
.
Trait Implementations
impl<H: Clone + BuildHasher> Clone for Selection<H>
[src][+]
impl<H: Debug + BuildHasher> Debug for Selection<H>
[src][+]
Auto Trait Implementations
impl<H> RefUnwindSafe for Selection<H> where
H: RefUnwindSafe,
H: RefUnwindSafe,
impl<H> Send for Selection<H> where
H: Send,
H: Send,
impl<H> Sync for Selection<H> where
H: Sync,
H: Sync,
impl<H> Unpin for Selection<H> where
H: Unpin,
H: Unpin,
impl<H> UnwindSafe for Selection<H> where
H: UnwindSafe,
H: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,