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