FineExtWhereTDebug

Trait FineExtWhereTDebug 

Source
pub trait FineExtWhereTDebug<T, E>
where T: Debug,
{ // Required methods fn expect_err(self, msg: &str) -> E; fn unwrap_err(self) -> E; }

Required Methods§

Source

fn expect_err(self, msg: &str) -> E

Unwraps the E.

§Panics

Iff the Result is not Err, with a panic message including msg and the T.

Source

fn unwrap_err(self) -> E

Unwraps the E.

§Panics

Iff the Result is Err, with a panic message provided by the T.

Implementors§

Source§

impl<T, E> FineExtWhereTDebug<T, E> for Fine<T, E>
where T: Debug,