mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
11 lines
162 B
Rust
11 lines
162 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
pub struct Error {
|
|
#[source]
|
|
source: std::io::Error,
|
|
#[from]
|
|
other: anyhow::Error,
|
|
}
|
|
|
|
fn main() {}
|