Enum cleu_orm::Error [−][src]
pub enum Error {
CapacityError(CapacityError),
Fmt(Error),
NoDatabaseRowResult,
Sqlx(Error),
}Expand description
All possible errors
Downstream crates should implement From to compose more custom errors.
Variants
CapacityError(CapacityError)Insufficient capacity
Tuple Fields of CapacityError
Fmt(Error)Couldn’t be a string
Tuple Fields of Fmt
0: ErrorNo row was returned by the database
Sqlx(Error)All SQL-related errors
Tuple Fields of Sqlx
0: ErrorTrait Implementations
Performs the conversion.