type ComparisonResult<'a, T> = Result<(), ComparisonAssertionError<'a, T>>;
Aliased Type§
enum ComparisonResult<'a, T> {
Ok(()),
Err(ComparisonAssertionError<'a, T>),
}
Variants§
Ok(())
Contains the success value
Err(ComparisonAssertionError<'a, T>)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.