pub enum EqnameVariantData<Q, U> {
Q(Q),
UriQualified(U),
}
Expand description
A type for data which is specific to each variant of EQName
:
QName
or URIQualifiedName
.
Variants§
Trait Implementations§
Source§impl<Q: Clone, U: Clone> Clone for EqnameVariantData<Q, U>
impl<Q: Clone, U: Clone> Clone for EqnameVariantData<Q, U>
Source§fn clone(&self) -> EqnameVariantData<Q, U>
fn clone(&self) -> EqnameVariantData<Q, U>
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 moreimpl<Q: Copy, U: Copy> Copy for EqnameVariantData<Q, U>
impl<Q: Eq, U: Eq> Eq for EqnameVariantData<Q, U>
impl<Q, U> StructuralPartialEq for EqnameVariantData<Q, U>
Auto Trait Implementations§
impl<Q, U> Freeze for EqnameVariantData<Q, U>
impl<Q, U> RefUnwindSafe for EqnameVariantData<Q, U>where
Q: RefUnwindSafe,
U: RefUnwindSafe,
impl<Q, U> Send for EqnameVariantData<Q, U>
impl<Q, U> Sync for EqnameVariantData<Q, U>
impl<Q, U> Unpin for EqnameVariantData<Q, U>
impl<Q, U> UnwindSafe for EqnameVariantData<Q, U>where
Q: UnwindSafe,
U: 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