pub struct Picker<'a> {
pub available_options: &'a Vec<&'a str>,
pub selected_options_indexes: Option<Vec<usize>>,
}Fields§
§available_options: &'a Vec<&'a str>§selected_options_indexes: Option<Vec<usize>>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Picker<'a>
impl<'a> RefUnwindSafe for Picker<'a>
impl<'a> Send for Picker<'a>
impl<'a> Sync for Picker<'a>
impl<'a> Unpin for Picker<'a>
impl<'a> UnwindSafe for Picker<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more