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