Type Alias IndexerResult

Source
pub type IndexerResult = Result<(), ExecutorError>;
Expand description

See: https://asimov-specs.github.io/program-patterns/#indexer

Aliased Type§

pub enum IndexerResult {
    Ok(()),
    Err(ExecutorError),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(ExecutorError)

Contains the error value