Struct sqparse::ast::Identifier
source · pub struct Identifier<'s> {
pub value: &'s str,
pub token: &'s Token<'s>,
}Expand description
An identifier token.
Grammar: /[_a-zA-Z][_a-zA-Z0-9]*/
Fields§
§value: &'s str§token: &'s Token<'s>Trait Implementations§
source§impl<'s> Clone for Identifier<'s>
impl<'s> Clone for Identifier<'s>
source§fn clone(&self) -> Identifier<'s>
fn clone(&self) -> Identifier<'s>
Returns a copy 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 more