tauri-plugin-hasgard 0.3.0

Native automation and testing bridge for Tauri 2 applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
/// Plugin-level errors for tauri-hasgard.
#[derive(Debug, thiserror::Error)]
pub enum Error {
    /// An I/O error occurred (socket, file, etc.).
    #[error("io error: {0}")]
    Io(#[from] std::io::Error),

    /// A JSON serialization/deserialization error occurred.
    #[error("json error: {0}")]
    Json(#[from] serde_json::Error),
}