pub enum SimpleComboRowMsg<E: ToString> {
UpdateData(SimpleComboRow<E>),
SetActiveIdx(usize),
// some variants omitted
}Available on crate feature
libadwaita only.Expand description
The message type of SimpleComboRow.
Variants§
UpdateData(SimpleComboRow<E>)
Overwrite the current values.
SetActiveIdx(usize)
Set the index of the active element.
Trait Implementations§
Source§impl<E: Clone + ToString> Clone for SimpleComboRowMsg<E>
impl<E: Clone + ToString> Clone for SimpleComboRowMsg<E>
Source§fn clone(&self) -> SimpleComboRowMsg<E>
fn clone(&self) -> SimpleComboRowMsg<E>
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 moreimpl<E: Eq + ToString> Eq for SimpleComboRowMsg<E>
impl<E: ToString> StructuralPartialEq for SimpleComboRowMsg<E>
Auto Trait Implementations§
impl<E> Freeze for SimpleComboRowMsg<E>
impl<E> RefUnwindSafe for SimpleComboRowMsg<E>where
E: RefUnwindSafe,
impl<E> Send for SimpleComboRowMsg<E>where
E: Send,
impl<E> Sync for SimpleComboRowMsg<E>where
E: Sync,
impl<E> Unpin for SimpleComboRowMsg<E>where
E: Unpin,
impl<E> UnwindSafe for SimpleComboRowMsg<E>where
E: UnwindSafe,
Blanket Implementations§
Source§impl<C> AsyncPosition<()> for C
impl<C> AsyncPosition<()> for C
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.