pub trait BoxInIoErr<T> { // Required method fn box_err(self) -> Result<T, Error>; }
Boxes the error in a Result into an io::Error.
Result
io::Error