pub enum NotQNameItem {
QName {
namespace: Option<NameId>,
local_name: NameId,
},
Defined,
DefinedSibling,
}Expand description
Parsed item from notQName attribute (XSD 1.1)
Variants§
QName
Specific QName that is disallowed
Defined
##defined
DefinedSibling
##definedSibling (xs:any only, not xs:anyAttribute)
Trait Implementations§
Source§impl Clone for NotQNameItem
impl Clone for NotQNameItem
Source§fn clone(&self) -> NotQNameItem
fn clone(&self) -> NotQNameItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 NotQNameItem
impl Debug for NotQNameItem
impl Eq for NotQNameItem
Source§impl PartialEq for NotQNameItem
impl PartialEq for NotQNameItem
Source§fn eq(&self, other: &NotQNameItem) -> bool
fn eq(&self, other: &NotQNameItem) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NotQNameItem
Auto Trait Implementations§
impl Freeze for NotQNameItem
impl RefUnwindSafe for NotQNameItem
impl Send for NotQNameItem
impl Sync for NotQNameItem
impl Unpin for NotQNameItem
impl UnsafeUnpin for NotQNameItem
impl UnwindSafe for NotQNameItem
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