Trait ruc::err::RucResult[][src]

pub trait RucResult<T, E: Debug + Display + Send> {
    fn c(self, msg: SimpleMsg<E>) -> Result<T>;
}

convert all to this

Required methods

fn c(self, msg: SimpleMsg<E>) -> Result<T>[src]

alias for ‘chain_error’

Loading content...

Implementations on Foreign Types

impl<T, E: Debug + Display + Send> RucResult<T, E> for Option<T>[src]

impl<T, E: Debug + Display + Send, ERR: Error> RucResult<T, E> for Result<T, ERR>[src]

Loading content...

Implementors

impl<T, E: Debug + Display + Send> RucResult<T, E> for ruc::err::Result<T>[src]

Loading content...