Type Alias ComparisonResult

Source
type ComparisonResult<'a, T> = Result<Vec<u8>, ComparisonAssertionError<'a, T>>;

Aliased Type§

enum ComparisonResult<'a, T> {
    Ok(Vec<u8>),
    Err(ComparisonAssertionError<'a, T>),
}

Variants§

§1.0.0

Ok(Vec<u8>)

Contains the success value

§1.0.0

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.