1 2 3 4 5 6 7 8 9 10 11
//! Currently this module is work in progress. use thiserror_no_std::Error; #[derive(Error, Debug)] pub enum Error { #[error("unknown error")] Unknown, } #[cfg(feature = "std")] impl std::error::Error for Error {}