mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
18 lines
275 B
Rust
18 lines
275 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Debug)]
|
|
struct NoDisplay;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("thread: {thread}")]
|
|
pub struct Error {
|
|
thread: NoDisplay,
|
|
}
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("thread: {thread:o}")]
|
|
pub struct ErrorOctal {
|
|
thread: NoDisplay,
|
|
}
|
|
|
|
fn main() {}
|