[][src]Trait myutil::err::MyResult

pub trait MyResult<T> {
    fn c(self, msg: impl Display) -> Result<T>;

    fn cd(self, msg: impl Debug) -> Result<T>
    where
        Self: Sized
, { ... } }

Required methods

fn c(self, msg: impl Display) -> Result<T>

Loading content...

Provided methods

fn cd(self, msg: impl Debug) -> Result<T> where
    Self: Sized

Loading content...

Implementations on Foreign Types

impl<T> MyResult<T> for Option<T>[src]

impl<T, E: Error> MyResult<T> for Result<T, E>[src]

Loading content...

Implementors

impl<T> MyResult<T> for myutil::err::Result<T>[src]

Loading content...