pub struct SelectionChanged {
pub value: Option<String>,
pub index: Option<usize>,
}Expand description
Message emitted when selection changes.
Fields§
§value: Option<String>The newly selected value (None if cleared)
index: Option<usize>Index of the selected option
Trait Implementations§
Source§impl Clone for SelectionChanged
impl Clone for SelectionChanged
Source§fn clone(&self) -> SelectionChanged
fn clone(&self) -> SelectionChanged
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SelectionChanged
impl Debug for SelectionChanged
Source§impl PartialEq for SelectionChanged
impl PartialEq for SelectionChanged
impl Eq for SelectionChanged
impl StructuralPartialEq for SelectionChanged
Auto Trait Implementations§
impl Freeze for SelectionChanged
impl RefUnwindSafe for SelectionChanged
impl Send for SelectionChanged
impl Sync for SelectionChanged
impl Unpin for SelectionChanged
impl UnwindSafe for SelectionChanged
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.