blob: 11f552d448a75c66cb5bf09781fd64f7c3e6de59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use std::{error, fmt};
#[derive(Debug)]
pub enum Error {}
impl fmt::Display for Error {
fn fmt(&self, _f: &mut fmt::Formatter) -> fmt::Result {
todo!()
}
}
impl error::Error for Error {}
|