mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-06 06:17:39 +03:00
21 lines
321 B
Rust
21 lines
321 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub struct ErrorStruct {
|
|
#[source]
|
|
a: std::io::Error,
|
|
#[source]
|
|
b: anyhow::Error,
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum ErrorEnum {
|
|
Confusing {
|
|
#[source]
|
|
a: std::io::Error,
|
|
#[source]
|
|
b: anyhow::Error,
|
|
},
|
|
}
|
|
|
|
fn main() {}
|