proof_of_sql::base::database

Type Alias TableOperationResult

Source
pub type TableOperationResult<T> = Result<T, TableOperationError>;
Expand description

Result type for table operations

Aliased Type§

enum TableOperationResult<T> {
    Ok(T),
    Err(TableOperationError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TableOperationError)

Contains the error value