teo_result/conversion/
std_io.rs

1use crate::Error;
2
3impl From<std::io::Error> for Error {
4
5    fn from(value: std::io::Error) -> Self {
6        Self::new(format!("{}", value))
7    }
8}