pub enum TextCtrlEvent {
TextChanged,
TextEnter,
}Expand description
Events emitted by TextCtrl
Variants§
TextChanged
Emitted when the text in the control changes
TextEnter
Emitted when the user presses Enter in the control
Trait Implementations§
Source§impl Clone for TextCtrlEvent
impl Clone for TextCtrlEvent
Source§fn clone(&self) -> TextCtrlEvent
fn clone(&self) -> TextCtrlEvent
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 moreimpl Copy for TextCtrlEvent
Source§impl Debug for TextCtrlEvent
impl Debug for TextCtrlEvent
impl Eq for TextCtrlEvent
Source§impl PartialEq for TextCtrlEvent
impl PartialEq for TextCtrlEvent
Source§fn eq(&self, other: &TextCtrlEvent) -> bool
fn eq(&self, other: &TextCtrlEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TextCtrlEvent
Auto Trait Implementations§
impl Freeze for TextCtrlEvent
impl RefUnwindSafe for TextCtrlEvent
impl Send for TextCtrlEvent
impl Sync for TextCtrlEvent
impl Unpin for TextCtrlEvent
impl UnsafeUnpin for TextCtrlEvent
impl UnwindSafe for TextCtrlEvent
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