Trait object::read::ReadError

source ·
trait ReadError<T> {
    // Required method
    fn read_error(self, error: &'static str) -> Result<T>;
}

Required Methods§

source

fn read_error(self, error: &'static str) -> Result<T>

Implementations on Foreign Types§

source§

impl<T> ReadError<T> for Option<T>

source§

fn read_error(self, error: &'static str) -> Result<T>

source§

impl<T> ReadError<T> for Result<T, ()>

source§

fn read_error(self, error: &'static str) -> Result<T>

source§

impl<T> ReadError<T> for Result<T, Error>

source§

fn read_error(self, error: &'static str) -> Result<T>

Implementors§