pub type Result<T> = Result<T, DatabaseError>;Expand description
A specialized Result type for database operations.
Aliased Type§
enum Result<T> {
    Ok(T),
    Err(DatabaseError),
}pub type Result<T> = Result<T, DatabaseError>;A specialized Result type for database operations.
enum Result<T> {
    Ok(T),
    Err(DatabaseError),
}