Type Alias nimue::ProofResult

source ·
pub type ProofResult<T> = Result<T, ProofError>;
Expand description

The result type when trying to prove or verify a proof using Fiat-Shamir.

Aliased Type§

enum ProofResult<T> {
    Ok(T),
    Err(ProofError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProofError)

Contains the error value