ProverResult

Type Alias ProverResult 

Source
pub type ProverResult<T, ErrT> = Result<T, ProverError<ErrT>>;
Expand description

result of a prover operation

Aliased Type§

pub enum ProverResult<T, ErrT> {
    Ok(T),
    Err(ProverError<ErrT>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProverError<ErrT>)

Contains the error value