pub type IndexerSchemaResult<T> = Result<T, IndexerSchemaError>;
Expand description

Result type used by indexer schema operations.

Aliased Type§

enum IndexerSchemaResult<T> {
    Ok(T),
    Err(IndexerSchemaError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IndexerSchemaError)

Contains the error value