pub enum IdentType {
Type = 0,
Group = 1,
Element = 2,
ElementType = 3,
Attribute = 4,
AttributeGroup = 5,
BuildIn = 6,
Enumeration = 7,
}
Expand description
Type of the identifier.
Variants§
Type = 0
Used for xs:simpleType
or xs:complexType
.
Group = 1
Used for xs:group
.
Element = 2
Used for xs:element
.
ElementType = 3
Used for inline types of xs:element
.
Attribute = 4
Used for xs:attribute
.
AttributeGroup = 5
Used for xs:attributeGroup
.
BuildIn = 6
Used for build-in types.
Enumeration = 7
Used for xs:enumeration
.
Trait Implementations§
Source§impl Ord for IdentType
impl Ord for IdentType
Source§impl PartialOrd for IdentType
impl PartialOrd for IdentType
impl Copy for IdentType
impl Eq for IdentType
impl StructuralPartialEq for IdentType
Auto Trait Implementations§
impl Freeze for IdentType
impl RefUnwindSafe for IdentType
impl Send for IdentType
impl Sync for IdentType
impl Unpin for IdentType
impl UnwindSafe for IdentType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.