mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-04 21:37:57 +03:00
14 lines
251 B
Rust
14 lines
251 B
Rust
use core::fmt::{self, Display};
|
|
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error]
|
|
pub struct MyError;
|
|
|
|
impl Display for MyError {
|
|
fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
unimplemented!()
|
|
}
|
|
}
|
|
|
|
fn main() {}
|