pub enum NavigationEvent {
Show 13 variants
KeyPress {
key: String,
modifier_state: NavigationModifierType,
},
KeyRelease {
key: String,
modifier_state: NavigationModifierType,
},
MouseMove {
x: f64,
y: f64,
modifier_state: NavigationModifierType,
},
MouseButtonPress {
button: i32,
x: f64,
y: f64,
modifier_state: NavigationModifierType,
},
MouseButtonRelease {
button: i32,
x: f64,
y: f64,
modifier_state: NavigationModifierType,
},
Command {
command: NavigationCommand,
modifier_state: NavigationModifierType,
},
MouseScroll {
x: f64,
y: f64,
delta_x: f64,
delta_y: f64,
modifier_state: NavigationModifierType,
},
TouchDown {
identifier: u32,
x: f64,
y: f64,
pressure: f64,
modifier_state: NavigationModifierType,
},
TouchMotion {
identifier: u32,
x: f64,
y: f64,
pressure: f64,
modifier_state: NavigationModifierType,
},
TouchUp {
identifier: u32,
x: f64,
y: f64,
modifier_state: NavigationModifierType,
},
TouchFrame {
modifier_state: NavigationModifierType,
},
TouchCancel {
modifier_state: NavigationModifierType,
},
MouseDoubleClick {
button: i32,
x: f64,
y: f64,
modifier_state: NavigationModifierType,
},
}
Variants§
KeyPress
KeyRelease
MouseMove
MouseButtonPress
MouseButtonRelease
Command
MouseScroll
TouchDown
TouchMotion
TouchUp
TouchFrame
Fields
§
modifier_state: NavigationModifierType
TouchCancel
Fields
§
modifier_state: NavigationModifierType
MouseDoubleClick
Implementations§
pub fn new_key_press(key: &str) -> NavigationEvent
pub fn new_key_release(key: &str) -> NavigationEvent
pub fn new_mouse_move(x: f64, y: f64) -> NavigationEvent
pub fn new_mouse_scroll( x: f64, y: f64, delta_x: f64, delta_y: f64, ) -> NavigationEvent
pub fn new_command(command: NavigationCommand) -> NavigationEvent
pub fn new_touch_down( identifier: u32, x: f64, y: f64, pressure: f64, ) -> NavigationEvent
pub fn new_touch_motion( identifier: u32, x: f64, y: f64, pressure: f64, ) -> NavigationEvent
pub fn new_touch_up(identifier: u32, x: f64, y: f64) -> NavigationEvent
pub fn new_touch_frame() -> NavigationEvent
pub fn new_touch_cancel() -> NavigationEvent
pub fn new_mouse_double_click(button: i32, x: f64, y: f64) -> NavigationEvent
pub fn key_press_builder(key: &str) -> KeyEventBuilder<'_>
pub fn key_release_builder(key: &str) -> KeyEventBuilder<'_>
pub fn mouse_move_builder(x: f64, y: f64) -> MouseEventBuilder<'static>
pub fn mouse_scroll_builder( x: f64, y: f64, delta_x: f64, delta_y: f64, ) -> MouseEventBuilder<'static>
pub fn command_builder( command: NavigationCommand, ) -> CommandEventBuilder<'static>
pub fn touch_down_builder( identifier: u32, x: f64, y: f64, pressure: f64, ) -> TouchEventBuilder<'static>
pub fn touch_motion_builder( identifier: u32, x: f64, y: f64, pressure: f64, ) -> TouchEventBuilder<'static>
pub fn touch_up_builder( identifier: u32, x: f64, y: f64, ) -> TouchEventBuilder<'static>
pub fn touch_frame_builder() -> TouchMetaEventBuilder<'static>
pub fn touch_cancel_builder() -> TouchMetaEventBuilder<'static>
pub fn mouse_double_click_builder( button: i32, x: f64, y: f64, ) -> MouseEventBuilder<'static>
pub fn type_(event: &EventRef) -> NavigationEventType
pub fn parse(event: &EventRef) -> Result<Self, BoolError>
pub fn structure(&self) -> Structure
pub fn build(&self) -> Event
Trait Implementations§
source§fn clone(&self) -> NavigationEvent
fn clone(&self) -> NavigationEvent
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 moresource§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more