1 2 3 4 5 6 7 8 9 10 11
//! Error module. //! Generic error marker trait. #[cfg(feature = "std")] use std::fmt::Debug; #[cfg(not(feature = "std"))] use alloc::fmt::Debug; pub trait Error: Debug {}