pub enum ComputerAction {
Click(Click),
DoubleClick(DoubleClick),
Drag(Drag),
KeyPress(KeyPress),
Move(Move),
Screenshot(Screenshot),
Scroll(Scroll),
Type(Type),
Wait(Wait),
}
Variants§
Click(Click)
DoubleClick(DoubleClick)
Drag(Drag)
KeyPress(KeyPress)
Move(Move)
Screenshot(Screenshot)
Scroll(Scroll)
Type(Type)
Wait(Wait)
Trait Implementations§
Source§impl Clone for ComputerAction
impl Clone for ComputerAction
Source§fn clone(&self) -> ComputerAction
fn clone(&self) -> ComputerAction
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 ComputerAction
impl RefUnwindSafe for ComputerAction
impl Send for ComputerAction
impl Sync for ComputerAction
impl Unpin for ComputerAction
impl UnwindSafe for ComputerAction
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