pub type IndexerSchemaDbResult<T> = Result<T, IndexerSchemaDbError>;
Expand description

Result type returned by indexer schema database-specific operations.

Aliased Type§

enum IndexerSchemaDbResult<T> {
    Ok(T),
    Err(IndexerSchemaDbError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IndexerSchemaDbError)

Contains the error value