Trait btlib::error::IoErr

source ·
pub trait IoErr<T> {
    // Required method
    fn io_err(self) -> Result<T>;
}

Required Methods§

source

fn io_err(self) -> Result<T>

Maps the error in this result to an io::Error.

Implementors§

source§

impl<T> IoErr<T> for Result<T>