Type Alias zk_kit_pmt::PmtreeResult

source ·
pub type PmtreeResult<T> = Result<T, PmtreeErrorKind>;
Expand description

Custom Result type with custom Error type

Aliased Type§

enum PmtreeResult<T> {
    Ok(T),
    Err(PmtreeErrorKind),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PmtreeErrorKind)

Contains the error value