pub trait Testable<T, E> {
// Required method
fn test(self) -> TestResult<T, E>;
}Required Methods§
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.
impl<T> Testable<T, Error> for Result<T, Error>where
T: Debug,
Available on crate feature
syn only.