pub enum NativeEventOperation {
Block,
Dispatch,
}
Expand description
Indicates whether to pass the generated event to the next program or not.
Variants§
Block
Do not pass the generated event to the next program.
Dispatch
Pass the generated event to the next program.
Trait Implementations§
Source§impl Clone for NativeEventOperation
impl Clone for NativeEventOperation
Source§fn clone(&self) -> NativeEventOperation
fn clone(&self) -> NativeEventOperation
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for NativeEventOperation
impl Debug for NativeEventOperation
Source§impl Default for &NativeEventOperation
impl Default for &NativeEventOperation
Source§fn default() -> &NativeEventOperation
fn default() -> &NativeEventOperation
Returns the “default value” for a type. Read more
Source§impl Default for NativeEventOperation
impl Default for NativeEventOperation
Source§fn default() -> NativeEventOperation
fn default() -> NativeEventOperation
Returns the “default value” for a type. Read more
Source§impl Hash for NativeEventOperation
impl Hash for NativeEventOperation
Source§impl PartialEq for NativeEventOperation
impl PartialEq for NativeEventOperation
impl Copy for NativeEventOperation
impl Eq for NativeEventOperation
impl StructuralPartialEq for NativeEventOperation
Auto Trait Implementations§
impl Freeze for NativeEventOperation
impl RefUnwindSafe for NativeEventOperation
impl Send for NativeEventOperation
impl Sync for NativeEventOperation
impl Unpin for NativeEventOperation
impl UnwindSafe for NativeEventOperation
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