TestAssertWithMsg

Trait TestAssertWithMsg 

Source
pub trait TestAssertWithMsg<A> {
    type Output;

    // Required method
    fn assert(self, msg: A) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn assert(self, msg: A) -> Self::Output

Implementations on Foreign Types§

Source§

impl<T, E> TestAssertWithMsg<&str> for Result<T, E>
where E: Display,

Source§

type Output = T

Source§

fn assert(self, msg: &str) -> T

Implementors§