pub enum ItemTypeNode {
Item,
Atomic(QName),
Kind(KindTest),
}Expand description
Item type in a sequence type.
Variants§
Item
item() - any item.
Atomic(QName)
Atomic type (QName like xs:integer).
Kind(KindTest)
Kind test (node(), element(), etc.).
Trait Implementations§
Source§impl Clone for ItemTypeNode
impl Clone for ItemTypeNode
Source§fn clone(&self) -> ItemTypeNode
fn clone(&self) -> ItemTypeNode
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 moreAuto Trait Implementations§
impl Freeze for ItemTypeNode
impl RefUnwindSafe for ItemTypeNode
impl Send for ItemTypeNode
impl Sync for ItemTypeNode
impl Unpin for ItemTypeNode
impl UnsafeUnpin for ItemTypeNode
impl UnwindSafe for ItemTypeNode
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