Enum selectors::parser::QNamePrefix
source · enum QNamePrefix<Impl: SelectorImpl> {
ImplicitNoNamespace,
ImplicitAnyNamespace,
ImplicitDefaultNamespace(Impl::NamespaceUrl),
ExplicitNoNamespace,
ExplicitAnyNamespace,
ExplicitNamespace(Impl::NamespacePrefix, Impl::NamespaceUrl),
}
Variants§
ImplicitNoNamespace
ImplicitAnyNamespace
ImplicitDefaultNamespace(Impl::NamespaceUrl)
ExplicitNoNamespace
ExplicitAnyNamespace
ExplicitNamespace(Impl::NamespacePrefix, Impl::NamespaceUrl)
Trait Implementations§
source§impl<Impl: Debug + SelectorImpl> Debug for QNamePrefix<Impl>
impl<Impl: Debug + SelectorImpl> Debug for QNamePrefix<Impl>
Auto Trait Implementations§
impl<Impl> Freeze for QNamePrefix<Impl>where
<Impl as SelectorImpl>::NamespaceUrl: Freeze,
<Impl as SelectorImpl>::NamespacePrefix: Freeze,
impl<Impl> RefUnwindSafe for QNamePrefix<Impl>where
<Impl as SelectorImpl>::NamespaceUrl: RefUnwindSafe,
<Impl as SelectorImpl>::NamespacePrefix: RefUnwindSafe,
impl<Impl> Send for QNamePrefix<Impl>
impl<Impl> Sync for QNamePrefix<Impl>
impl<Impl> Unpin for QNamePrefix<Impl>
impl<Impl> UnwindSafe for QNamePrefix<Impl>where
<Impl as SelectorImpl>::NamespaceUrl: UnwindSafe,
<Impl as SelectorImpl>::NamespacePrefix: UnwindSafe,
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