pub enum QuillSQLError {
NotSupport(String),
Internal(String),
Io(Error),
Parser(ParserError),
Plan(String),
Execution(String),
Storage(String),
Concurrent(String),
Unwind,
}Variants§
NotSupport(String)
Internal(String)
Io(Error)
Parser(ParserError)
Plan(String)
Execution(String)
Storage(String)
Concurrent(String)
Unwind
Trait Implementations§
Source§impl Debug for QuillSQLError
impl Debug for QuillSQLError
Source§impl Display for QuillSQLError
impl Display for QuillSQLError
Source§impl Error for QuillSQLError
impl Error for QuillSQLError
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()
Source§impl From<Error> for QuillSQLError
impl From<Error> for QuillSQLError
Source§impl From<ParserError> for QuillSQLError
impl From<ParserError> for QuillSQLError
Source§fn from(source: ParserError) -> Self
fn from(source: ParserError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QuillSQLError
impl !RefUnwindSafe for QuillSQLError
impl Send for QuillSQLError
impl Sync for QuillSQLError
impl Unpin for QuillSQLError
impl UnsafeUnpin for QuillSQLError
impl !UnwindSafe for QuillSQLError
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