1 2 3 4 5 6 7 8 9
extern crate std; use crate::Error; impl From<std::io::Error> for Error { fn from(_value: std::io::Error) -> Self { Self::Io } }