Trait btlib::error::BoxInIoErr

source ·
pub trait BoxInIoErr<T> {
    // Required method
    fn box_err(self) -> Result<T, Error>;
}

Required Methods§

source

fn box_err(self) -> Result<T, Error>

Boxes the error in a Result into an io::Error.

Implementations on Foreign Types§

source§

impl<T, E: Error + Send + Sync + 'static> BoxInIoErr<T> for Result<T, E>

source§

fn box_err(self) -> Result<T, Error>

Implementors§