mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-02 17:03:38 +00:00
12 lines
144 B
Rust
12 lines
144 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("...")]
|
|
pub enum ErrorEnum {
|
|
Broken {
|
|
source: String,
|
|
},
|
|
}
|
|
|
|
fn main() {}
|