pub enum UnscopedName {
Unqualified(UnqualifiedName),
Std(UnqualifiedName),
}
Expand description
The <unscoped-name>
production.
<unscoped-name> ::= <unqualified-name>
::= St <unqualified-name> # ::std::
Variants§
Unqualified(UnqualifiedName)
An unqualified name.
Std(UnqualifiedName)
A name within the std::
namespace.
Trait Implementations§
Source§impl Clone for UnscopedName
impl Clone for UnscopedName
Source§fn clone(&self) -> UnscopedName
fn clone(&self) -> UnscopedName
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 Debug for UnscopedName
impl Debug for UnscopedName
Source§impl PartialEq for UnscopedName
impl PartialEq for UnscopedName
impl Eq for UnscopedName
impl StructuralPartialEq for UnscopedName
Auto Trait Implementations§
impl Freeze for UnscopedName
impl RefUnwindSafe for UnscopedName
impl Send for UnscopedName
impl Sync for UnscopedName
impl Unpin for UnscopedName
impl UnwindSafe for UnscopedName
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