Type Alias ZkResult

Source
pub type ZkResult<T> = Result<T, ZkError>;
Expand description

Value returned from potentially-error operations.

Aliased Type§

enum ZkResult<T> {
    Ok(T),
    Err(ZkError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ZkError)

Contains the error value