pub enum Error {
QueryRejected,
StatementNotAllowed(String),
FunctionNotAllowed(String),
InvalidFunctionName(String),
Parse(String),
}
Expand description
Errors related to statement rejection or parsing failures
Variants§
QueryRejected
Query was rejected for intentionally-unspecific reasons, usually because of the presence of a generally-banned node in the provided statement
StatementNotAllowed(String)
A top-level statement was not allowed, usually because of an AllowedStatements restriction
FunctionNotAllowed(String)
A named function was not allowed, usually because of an AllowedFunctions restriction
InvalidFunctionName(String)
Query was rejected because it contained a function without a valid string name
Parse(String)
There was an error during the parsing step. This means that the provided statement was not valid Postgres-flavored SQL
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · 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 Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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