pub enum SqlError {
Show 51 variants
Parse(String),
Plan(String),
TableNotFound(String),
TableAlreadyExists(String),
ColumnNotFound(String),
DuplicateKey,
NotNullViolation(String),
TypeMismatch {
expected: String,
got: String,
},
PrimaryKeyRequired,
DuplicateColumn(String),
RowTooLarge {
size: usize,
max: usize,
},
KeyTooLarge {
size: usize,
max: usize,
},
Unsupported(String),
InvalidValue(String),
DivisionByZero,
IntegerOverflow,
AmbiguousColumn(String),
IndexNotFound(String),
IndexAlreadyExists(String),
UniqueViolation(String),
CheckViolation(String),
ForeignKeyViolation(String),
TransactionAlreadyActive,
NoActiveTransaction,
SavepointNotFound(String),
SubqueryMultipleColumns,
SubqueryMultipleRows,
QueryReturnedNoRows,
ParameterCountMismatch {
expected: usize,
got: usize,
},
CompoundColumnCountMismatch {
left: usize,
right: usize,
},
CteColumnAliasMismatch {
name: String,
expected: usize,
got: usize,
},
DuplicateCteName(String),
RecursiveCteNoUnion(String),
RecursiveCteMaxIterations(String, usize),
WindowFunctionRequiresOrderBy(String),
ViewNotFound(String),
ViewAlreadyExists(String),
CannotModifyView(String),
CircularViewReference(String),
Storage(Error),
InvalidDateLiteral(String),
InvalidTimeLiteral(String),
InvalidTimestampLiteral(String),
InvalidIntervalLiteral(String),
InvalidExtractField(String),
InvalidDateTruncUnit(String),
TimeZoneUnsupported(String),
InvalidTimezone(String),
CannotInsertIntoGeneratedColumn(String),
CannotUpdateGeneratedColumn(String),
GeneratedColumnReference(String),
}Variants§
Parse(String)
Plan(String)
TableNotFound(String)
TableAlreadyExists(String)
ColumnNotFound(String)
DuplicateKey
NotNullViolation(String)
TypeMismatch
PrimaryKeyRequired
DuplicateColumn(String)
RowTooLarge
KeyTooLarge
Unsupported(String)
InvalidValue(String)
DivisionByZero
IntegerOverflow
AmbiguousColumn(String)
IndexNotFound(String)
IndexAlreadyExists(String)
UniqueViolation(String)
CheckViolation(String)
ForeignKeyViolation(String)
TransactionAlreadyActive
NoActiveTransaction
SavepointNotFound(String)
SubqueryMultipleColumns
SubqueryMultipleRows
QueryReturnedNoRows
ParameterCountMismatch
CompoundColumnCountMismatch
CteColumnAliasMismatch
DuplicateCteName(String)
RecursiveCteNoUnion(String)
RecursiveCteMaxIterations(String, usize)
WindowFunctionRequiresOrderBy(String)
ViewNotFound(String)
ViewAlreadyExists(String)
CannotModifyView(String)
CircularViewReference(String)
Storage(Error)
InvalidDateLiteral(String)
InvalidTimeLiteral(String)
InvalidTimestampLiteral(String)
InvalidIntervalLiteral(String)
InvalidExtractField(String)
InvalidDateTruncUnit(String)
TimeZoneUnsupported(String)
InvalidTimezone(String)
CannotInsertIntoGeneratedColumn(String)
CannotUpdateGeneratedColumn(String)
GeneratedColumnReference(String)
Trait Implementations§
Source§impl Error for SqlError
impl Error for SqlError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for SqlError
impl !UnwindSafe for SqlError
impl Freeze for SqlError
impl Send for SqlError
impl Sync for SqlError
impl Unpin for SqlError
impl UnsafeUnpin for SqlError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
Source§fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
fn try_to_compact_string(&self) -> Result<CompactString, ToCompactStringError>
Fallible version of
ToCompactString::to_compact_string() Read moreSource§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString. Read more