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§
source§impl Clone for KeyEventResult
impl Clone for KeyEventResult
source§fn clone(&self) -> KeyEventResult
fn clone(&self) -> KeyEventResult
Returns a copy 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 more