pub struct QualifiedName<'a> {
    pub prefix: Vec<(Identifier<'a>, Span)>,
    pub identifier: Identifier<'a>,
}Fields§
§prefix: Vec<(Identifier<'a>, Span)>§identifier: Identifier<'a>Trait Implementations§
Source§impl<'a> Clone for QualifiedName<'a>
 
impl<'a> Clone for QualifiedName<'a>
Source§fn clone(&self) -> QualifiedName<'a>
 
fn clone(&self) -> QualifiedName<'a>
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<'a> Debug for QualifiedName<'a>
 
impl<'a> Debug for QualifiedName<'a>
Auto Trait Implementations§
impl<'a> Freeze for QualifiedName<'a>
impl<'a> RefUnwindSafe for QualifiedName<'a>
impl<'a> Send for QualifiedName<'a>
impl<'a> Sync for QualifiedName<'a>
impl<'a> Unpin for QualifiedName<'a>
impl<'a> UnwindSafe for QualifiedName<'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