mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-03 10:11:15 +02:00
24 lines
527 B
Rust
24 lines
527 B
Rust
pub mod platform;
|
|
pub mod process;
|
|
|
|
pub use anyhow::Result;
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error("Unable to determine target-architecture")]
|
|
Architecture,
|
|
#[error("Unable to determine target-os")]
|
|
OS,
|
|
#[error("Unable to determine target-environment")]
|
|
Environment,
|
|
#[error("Unknown target_os")]
|
|
Unknown,
|
|
#[error("Could not get parent process")]
|
|
ParentProcess,
|
|
#[error("Could not get parent PID")]
|
|
ParentPID,
|
|
#[error("Could not get child process")]
|
|
ChildProcess,
|
|
}
|