Enum sql_parse::IdentifierPart 
source · pub enum IdentifierPart<'a> {
    Name(Identifier<'a>),
    Star(Span),
}Expand description
Part of a full identifier
Variants§
Name(Identifier<'a>)
Star(Span)
Trait Implementations§
source§impl<'a> Clone for IdentifierPart<'a>
 
impl<'a> Clone for IdentifierPart<'a>
source§fn clone(&self) -> IdentifierPart<'a>
 
fn clone(&self) -> IdentifierPart<'a>
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 moresource§impl<'a> Debug for IdentifierPart<'a>
 
impl<'a> Debug for IdentifierPart<'a>
Auto Trait Implementations§
impl<'a> Freeze for IdentifierPart<'a>
impl<'a> RefUnwindSafe for IdentifierPart<'a>
impl<'a> Send for IdentifierPart<'a>
impl<'a> Sync for IdentifierPart<'a>
impl<'a> Unpin for IdentifierPart<'a>
impl<'a> UnwindSafe for IdentifierPart<'a>
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