Skip to main content

Testable

Trait Testable 

Source
pub trait Testable<T, E> {
    // Required method
    fn test(self) -> TestResult<T, E>;
}

Required Methods§

Source

fn test(self) -> TestResult<T, E>

Implementations on Foreign Types§

Source§

impl<T> Testable<T, Error> for Result<T, Error>
where T: Debug,

Available on crate feature syn only.
Source§

fn test(self) -> TestResult<T, Error>

Implementors§