blob: b581f22d1ad4b6e9263fde7897e92814e01dfeb3 (
plain)
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())
}
}
|