Enum gluesql_core::executor::FetchError
source · [−]pub enum FetchError {
TableNotFound(String),
SeriesSizeWrong(i64),
TooManyColumnAliases(String, usize, usize),
}Variants
TableNotFound(String)
SeriesSizeWrong(i64)
TooManyColumnAliases(String, usize, usize)
Trait Implementations
sourceimpl Debug for FetchError
impl Debug for FetchError
sourceimpl Display for FetchError
impl Display for FetchError
sourceimpl Error for FetchError
impl Error for FetchError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<FetchError> for Error
impl From<FetchError> for Error
sourcefn from(source: FetchError) -> Self
fn from(source: FetchError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<FetchError> for FetchError
impl PartialEq<FetchError> for FetchError
sourcefn eq(&self, other: &FetchError) -> bool
fn eq(&self, other: &FetchError) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourceimpl Serialize for FetchError
impl Serialize for FetchError
impl StructuralPartialEq for FetchError
Auto Trait Implementations
impl RefUnwindSafe for FetchError
impl Send for FetchError
impl Sync for FetchError
impl Unpin for FetchError
impl UnwindSafe for FetchError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more