Sha256: 0b8ce57ba958008f90aaa078fa1066b47b8d4a5146b6a91ec7d8d96122f0637a
Contents?: true
Size: 251 Bytes
Versions: 9
Compression:
Stored size: 251 Bytes
Contents
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() {}
Version data entries
9 entries across 9 versions & 1 rubygems