pub enum InteractAction {
Show 17 variants
Click,
TypeText,
Submit,
Toggle,
Select,
Slide,
Paste,
Scroll,
Sort,
PaneFocusCycle,
Press,
Release,
TypeKey,
MoveTo,
CanvasPress,
CanvasRelease,
CanvasMove,
}Expand description
An automation interaction action.
These map to the actions the renderer’s interact handler supports.
Variants§
Click
Click.
TypeText
Type Text.
Submit
Submit.
Toggle
Toggle.
Select
Select.
Slide
Slide.
Paste
Paste.
Scroll
Scroll.
Sort
Sort.
PaneFocusCycle
Pane Focus Cycle.
Press
Press.
Release
Release.
TypeKey
Type Key.
MoveTo
Move To.
CanvasPress
Canvas Press.
CanvasRelease
Canvas Release.
CanvasMove
Canvas Move.
Implementations§
Trait Implementations§
Source§impl Clone for InteractAction
impl Clone for InteractAction
Source§fn clone(&self) -> InteractAction
fn clone(&self) -> InteractAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InteractAction
impl Debug for InteractAction
Source§impl Display for InteractAction
impl Display for InteractAction
Source§impl Hash for InteractAction
impl Hash for InteractAction
Source§impl PartialEq for InteractAction
impl PartialEq for InteractAction
Source§fn eq(&self, other: &InteractAction) -> bool
fn eq(&self, other: &InteractAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for InteractAction
impl Eq for InteractAction
impl StructuralPartialEq for InteractAction
Auto Trait Implementations§
impl Freeze for InteractAction
impl RefUnwindSafe for InteractAction
impl Send for InteractAction
impl Sync for InteractAction
impl Unpin for InteractAction
impl UnsafeUnpin for InteractAction
impl UnwindSafe for InteractAction
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