9 lines
216 B
Rust
9 lines
216 B
Rust
#[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())
|
|
}
|
|
}
|