pub enum TextboxEvent {
SetValue(String),
ValueChanged(String),
ResetValue,
Clear,
}Variants§
Trait Implementations§
Source§impl Clone for TextboxEvent
impl Clone for TextboxEvent
Source§fn clone(&self) -> TextboxEvent
fn clone(&self) -> TextboxEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TextboxEvent
impl Debug for TextboxEvent
Source§impl PartialEq for TextboxEvent
impl PartialEq for TextboxEvent
Source§fn eq(&self, other: &TextboxEvent) -> bool
fn eq(&self, other: &TextboxEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextboxEvent
Auto Trait Implementations§
impl Freeze for TextboxEvent
impl RefUnwindSafe for TextboxEvent
impl Send for TextboxEvent
impl Sync for TextboxEvent
impl Unpin for TextboxEvent
impl UnsafeUnpin for TextboxEvent
impl UnwindSafe for TextboxEvent
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