Struct sql_ast::ast::Ident [−][src]
Expand description
An identifier, decomposed into its value or character data and the quote style.
Fields
value: StringThe value of the identifier without quotes.
quote_style: Option<char>The starting quote if any. Valid quote characters are the single quote, double quote, backtick, and opening square bracket.
Implementations
Create a new identifier with the given value and no quotes.
Create a new quoted identifier with the given quote and value. This function panics if the given quote is not a valid quote character.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Identimpl UnwindSafe for IdentBlanket Implementations
Mutably borrows from an owned value. Read more