Enum i_slint_core::input::KeyEventResult
source · [−]#[repr(C)]
pub enum KeyEventResult {
EventAccepted,
EventIgnored,
}Expand description
Represents how an item’s key_event handler dealt with a key event. An accepted event results in no further event propagation.
Variants
EventAccepted
The event was handled.
EventIgnored
The event was not handled and should be sent to other items.
Trait Implementations
sourceimpl Clone for KeyEventResult
impl Clone for KeyEventResult
sourcefn clone(&self) -> KeyEventResult
fn clone(&self) -> KeyEventResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for KeyEventResult
impl Debug for KeyEventResult
sourceimpl PartialEq<KeyEventResult> for KeyEventResult
impl PartialEq<KeyEventResult> for KeyEventResult
sourcefn eq(&self, other: &KeyEventResult) -> bool
fn eq(&self, other: &KeyEventResult) -> bool
impl Copy for KeyEventResult
impl StructuralPartialEq for KeyEventResult
Auto Trait Implementations
impl RefUnwindSafe for KeyEventResult
impl Send for KeyEventResult
impl Sync for KeyEventResult
impl Unpin for KeyEventResult
impl UnwindSafe for KeyEventResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more