pub enum SelectionUpdate<T> {
NoChange,
Set(T),
}Variants§
Implementations§
Trait Implementations§
Source§impl<T> Clone for SelectionUpdate<T>where
T: Clone,
impl<T> Clone for SelectionUpdate<T>where
T: Clone,
Source§fn clone(&self) -> SelectionUpdate<T>
fn clone(&self) -> SelectionUpdate<T>
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<T> Debug for SelectionUpdate<T>where
T: Debug,
impl<T> Debug for SelectionUpdate<T>where
T: Debug,
Source§impl<T> PartialEq for SelectionUpdate<T>where
T: PartialEq,
impl<T> PartialEq for SelectionUpdate<T>where
T: PartialEq,
impl<T> Eq for SelectionUpdate<T>where
T: Eq,
impl<T> StructuralPartialEq for SelectionUpdate<T>
Auto Trait Implementations§
impl<T> Freeze for SelectionUpdate<T>where
T: Freeze,
impl<T> RefUnwindSafe for SelectionUpdate<T>where
T: RefUnwindSafe,
impl<T> Send for SelectionUpdate<T>where
T: Send,
impl<T> Sync for SelectionUpdate<T>where
T: Sync,
impl<T> Unpin for SelectionUpdate<T>where
T: Unpin,
impl<T> UnsafeUnpin for SelectionUpdate<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for SelectionUpdate<T>where
T: UnwindSafe,
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