mirror of
https://jturnerusa.dev/cgit/gentoo-utils/
synced 2025-12-02 19:18:35 -06:00
19 lines
275 B
Rust
19 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() {}
|