[][src]Trait err_tools::OpError

pub trait OpError: Sized {
    type V;
    pub fn op_err(self) -> Option<Self::V>;

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

Associated Types

type V[src]

Loading content...

Required methods

pub fn op_err(self) -> Option<Self::V>[src]

Loading content...

Provided methods

pub fn e_str(self, s: &'static str) -> Result<Self::V>[src]

pub fn e_string(self, s: String) -> Result<Self::V>[src]

Loading content...

Implementations on Foreign Types

impl<V> OpError for Option<V>[src]

type V = V

Loading content...

Implementors

Loading content...