//! Result types for the `kona-derive` pipeline.
usecrate::PipelineErrorKind;/// A result type for the derivation pipeline stages.
pubtypePipelineResult<T>=Result<T, PipelineErrorKind>;/// A pipeline error.
#[derive(Debug, PartialEq, Eq)]pubenumStepResult{/// Attributes were successfully prepared.
PreparedAttributes,/// Origin was advanced.
AdvancedOrigin,/// Origin advance failed.
OriginAdvanceErr(PipelineErrorKind),/// Step failed.
StepFailed(PipelineErrorKind),}