pub enum SqlQueryKindParseError {
Empty,
}Expand description
Error returned when parsing SQL query kinds fails.
Variants§
Empty
Trait Implementations§
Source§impl Clone for SqlQueryKindParseError
impl Clone for SqlQueryKindParseError
Source§fn clone(&self) -> SqlQueryKindParseError
fn clone(&self) -> SqlQueryKindParseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SqlQueryKindParseError
impl Debug for SqlQueryKindParseError
Source§impl Display for SqlQueryKindParseError
impl Display for SqlQueryKindParseError
Source§impl Error for SqlQueryKindParseError
impl Error for SqlQueryKindParseError
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()
Source§impl PartialEq for SqlQueryKindParseError
impl PartialEq for SqlQueryKindParseError
Source§fn eq(&self, other: &SqlQueryKindParseError) -> bool
fn eq(&self, other: &SqlQueryKindParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SqlQueryKindParseError
impl Eq for SqlQueryKindParseError
impl StructuralPartialEq for SqlQueryKindParseError
Auto Trait Implementations§
impl Freeze for SqlQueryKindParseError
impl RefUnwindSafe for SqlQueryKindParseError
impl Send for SqlQueryKindParseError
impl Sync for SqlQueryKindParseError
impl Unpin for SqlQueryKindParseError
impl UnsafeUnpin for SqlQueryKindParseError
impl UnwindSafe for SqlQueryKindParseError
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