1
2
3
4
5
6
7
8
#[cfg(feature = "std")]
mod std;

impl core::fmt::Display for crate::io::error::Error {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        f.write_str(&self.to_debug_string())
    }
}