Trait err_tools::ResError[][src]

pub trait ResError: Sized {
    type V;
    type E: Debug + Display + Send + Sync + 'static;
    fn res_err(self) -> Result<Self::V, Self::E>;

    fn e_str(self, s: &'static str) -> Result<Self::V> { ... }
fn e_string(self, s: String) -> Result<Self::V> { ... } }

Associated Types

Required methods

Provided methods

Implementations on Foreign Types

Implementors