pub enum UnscopedTemplateNameHandle {
WellKnown(WellKnownComponent),
BackReference(usize),
NonSubstitution(NonSubstitution),
}
Expand description
A handle to an UnscopedTemplateName
.
Variants§
WellKnown(WellKnownComponent)
A reference to a “well-known” component.
BackReference(usize)
A back-reference into the substitution table to a component we have already parsed.
NonSubstitution(NonSubstitution)
A handle to some <unscoped-name>
component that isn’t by itself
substitutable.
Implementations§
source§impl UnscopedTemplateNameHandle
impl UnscopedTemplateNameHandle
sourcepub fn back_reference(&self) -> Option<usize>
pub fn back_reference(&self) -> Option<usize>
If this is a BackReference
, get its index.
Trait Implementations§
source§impl Clone for UnscopedTemplateNameHandle
impl Clone for UnscopedTemplateNameHandle
source§fn clone(&self) -> UnscopedTemplateNameHandle
fn clone(&self) -> UnscopedTemplateNameHandle
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