Skip to main content

Selection

Struct Selection 

Source
pub struct Selection<'a, T: Send + Sync + 'static> { /* private fields */ }
Expand description

The selected items when the picker quits.

This is the return type of the various pick_multi* methods of a Picker. Iterate over the picked items with iter. Also see the documentation for multiple selections

The lifetime of this struct is bound to the lifetime of the picker from which it originated.

Implementations§

Source§

impl<'a, T: Send + Sync + 'static> Selection<'a, T>

Source

pub fn iter(&self) -> impl ExactSizeIterator<Item = &'a T> + DoubleEndedIterator

Returns an iterator over the other selected items.

The iterator contains each selected item exactly once, sorted by index based on the order in which the picker received the items. If multiple threads populate the picker, the relative order between different threads is unspecified. Note that items are deduplicated based on the selection index instead of using any properties of the type T itself.

See iter_selected_order to obtain the items in the order selected by the user.

The iterator will be empty if the picker quit without selecting any items.

Source

pub fn iter_selected_order( &self, ) -> impl ExactSizeIterator<Item = &'a T> + DoubleEndedIterator

Returns an iterator over the selected items, sorted by selection order.

The iterator contains each selected item exactly once. If an item is un-selected and selected again, the order is determined by the final selection.

Note that the current implementation does not internally store the selected items by selection order, so calling this method requires allocating a new container and then sorting.

The iterator will be empty if the picker quit without selecting any items.

Source

pub fn is_empty(&self) -> bool

Returns if there were no selected items.

Source

pub fn len(&self) -> usize

Returns the number of selected items.

Auto Trait Implementations§

§

impl<'a, T> Freeze for Selection<'a, T>

§

impl<'a, T> RefUnwindSafe for Selection<'a, T>

§

impl<'a, T> Send for Selection<'a, T>

§

impl<'a, T> Sync for Selection<'a, T>

§

impl<'a, T> Unpin for Selection<'a, T>

§

impl<'a, T> UnsafeUnpin for Selection<'a, T>

§

impl<'a, T> UnwindSafe for Selection<'a, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.