kona_derive::types

Type Alias PipelineResult

Source
pub type PipelineResult<T> = Result<T, PipelineErrorKind>;
Expand description

A result type for the derivation pipeline stages.

Aliased Type§

enum PipelineResult<T> {
    Ok(T),
    Err(PipelineErrorKind),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PipelineErrorKind)

Contains the error value