Enum respo::RespoEvent
source · pub enum RespoEvent {
Click {
client_x: f64,
client_y: f64,
original_event: MouseEvent,
},
Keyboard {
key: String,
key_code: u32,
shift_key: bool,
ctrl_key: bool,
alt_key: bool,
meta_key: bool,
repeat: bool,
original_event: KeyboardEvent,
},
Input {
value: String,
original_event: InputEvent,
},
Focus(FocusEvent),
Blur(FocusEvent),
}Expand description
event wraps on top of DOM events
Variants§
Trait Implementations§
source§impl Clone for RespoEvent
impl Clone for RespoEvent
source§fn clone(&self) -> RespoEvent
fn clone(&self) -> RespoEvent
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 moreAuto Trait Implementations§
impl Freeze for RespoEvent
impl RefUnwindSafe for RespoEvent
impl !Send for RespoEvent
impl !Sync for RespoEvent
impl Unpin for RespoEvent
impl UnwindSafe for RespoEvent
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)