ui-automata 0.1.0

Declarative Workflow Engine for UI Automation
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Debug, Error)]
pub enum AutomataError {
    #[error("{0}")]
    Internal(String),
    #[error("{0}")]
    Platform(String),
    #[error("cancelled")]
    Cancelled,
}