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 duplicate 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§impl Debug for ComputerAction
impl Debug for ComputerAction
Source§impl<'de> Deserialize<'de> for ComputerAction
impl<'de> Deserialize<'de> for ComputerAction
Source§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
Source§impl PartialEq for ComputerAction
impl PartialEq for ComputerAction
Source§impl Serialize for ComputerAction
impl Serialize for ComputerAction
impl StructuralPartialEq for ComputerAction
Auto 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