pub enum SqlTableInfoError {
InvalidIdentifier(String),
}Expand description
Error that arises when attempting to use an invalid SQL identifier
Variants§
Trait Implementations§
Source§impl Clone for SqlTableInfoError
impl Clone for SqlTableInfoError
Source§fn clone(&self) -> SqlTableInfoError
fn clone(&self) -> SqlTableInfoError
Returns a duplicate of the value. Read more
1.0.0 · 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 SqlTableInfoError
impl Debug for SqlTableInfoError
Source§impl Display for SqlTableInfoError
impl Display for SqlTableInfoError
Source§impl Error for SqlTableInfoError
impl Error for SqlTableInfoError
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 Hash for SqlTableInfoError
impl Hash for SqlTableInfoError
Source§impl PartialEq for SqlTableInfoError
impl PartialEq for SqlTableInfoError
impl Eq for SqlTableInfoError
impl StructuralPartialEq for SqlTableInfoError
Auto Trait Implementations§
impl Freeze for SqlTableInfoError
impl RefUnwindSafe for SqlTableInfoError
impl Send for SqlTableInfoError
impl Sync for SqlTableInfoError
impl Unpin for SqlTableInfoError
impl UnwindSafe for SqlTableInfoError
Blanket Implementations§
Source§impl<T> BoolTagExprLexicalParse for Twhere
T: ToString,
impl<T> BoolTagExprLexicalParse for Twhere
T: ToString,
Source§fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>
fn lexical_parse(self) -> Result<LexicalTokenStream, ParseError>
Lexically parse value
Source§impl<T> BoolTagExprSyntaxParse<T> for Twhere
T: BoolTagExprLexicalParse,
impl<T> BoolTagExprSyntaxParse<T> for Twhere
T: BoolTagExprLexicalParse,
Source§fn syntax_parse(self) -> Result<BoolTagExpr, ParseError>
fn syntax_parse(self) -> Result<BoolTagExpr, ParseError>
Lexically and then syntactically parse the value into a boolean
expression tree
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