pub enum SqlKeywordParseError {
Empty,
Unknown,
}Expand description
Error returned when parsing a SQL keyword fails.
Variants§
Trait Implementations§
Source§impl Clone for SqlKeywordParseError
impl Clone for SqlKeywordParseError
Source§fn clone(&self) -> SqlKeywordParseError
fn clone(&self) -> SqlKeywordParseError
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 SqlKeywordParseError
impl Debug for SqlKeywordParseError
Source§impl Display for SqlKeywordParseError
impl Display for SqlKeywordParseError
Source§impl Error for SqlKeywordParseError
impl Error for SqlKeywordParseError
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 SqlKeywordParseError
impl PartialEq for SqlKeywordParseError
Source§fn eq(&self, other: &SqlKeywordParseError) -> bool
fn eq(&self, other: &SqlKeywordParseError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SqlKeywordParseError
impl Eq for SqlKeywordParseError
impl StructuralPartialEq for SqlKeywordParseError
Auto Trait Implementations§
impl Freeze for SqlKeywordParseError
impl RefUnwindSafe for SqlKeywordParseError
impl Send for SqlKeywordParseError
impl Sync for SqlKeywordParseError
impl Unpin for SqlKeywordParseError
impl UnsafeUnpin for SqlKeywordParseError
impl UnwindSafe for SqlKeywordParseError
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