pub enum DotRight<'tree> {
Alias(Box<Alias<'tree>>),
Charlist(Box<Charlist<'tree>>),
Identifier(Box<Identifier<'tree>>),
OperatorIdentifier(Box<OperatorIdentifier<'tree>>),
String(Box<String<'tree>>),
Tuple(Box<Tuple<'tree>>),
}Variants§
Alias(Box<Alias<'tree>>)
Charlist(Box<Charlist<'tree>>)
Identifier(Box<Identifier<'tree>>)
OperatorIdentifier(Box<OperatorIdentifier<'tree>>)
String(Box<String<'tree>>)
Tuple(Box<Tuple<'tree>>)
Trait Implementations§
impl<'tree> Eq for DotRight<'tree>
impl<'tree> StructuralPartialEq for DotRight<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for DotRight<'tree>
impl<'tree> RefUnwindSafe for DotRight<'tree>
impl<'tree> Send for DotRight<'tree>
impl<'tree> Sync for DotRight<'tree>
impl<'tree> Unpin for DotRight<'tree>
impl<'tree> UnsafeUnpin for DotRight<'tree>
impl<'tree> UnwindSafe for DotRight<'tree>
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