type ComparisonResult<'a, T> = Result<Vec<u8>, ComparisonAssertionError<'a, T>>;
Aliased Type§
enum ComparisonResult<'a, T> {
Ok(Vec<u8>),
Err(ComparisonAssertionError<'a, T>),
}
Variants§
Ok(Vec<u8>)
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.