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