pub enum KindTest {
Document(Option<DocumentTest>),
Element(Option<ElementOrAttributeTest>),
Attribute(Option<ElementOrAttributeTest>),
SchemaElement(SchemaElementTest),
SchemaAttribute(SchemaAttributeTest),
PI(Option<PITest>),
Comment,
Text,
NamespaceNode,
Any,
}Variants§
Document(Option<DocumentTest>)
Element(Option<ElementOrAttributeTest>)
Attribute(Option<ElementOrAttributeTest>)
SchemaElement(SchemaElementTest)
SchemaAttribute(SchemaAttributeTest)
PI(Option<PITest>)
Comment
Text
NamespaceNode
Any
Trait Implementations§
impl Eq for KindTest
impl StructuralPartialEq for KindTest
Auto Trait Implementations§
impl Freeze for KindTest
impl RefUnwindSafe for KindTest
impl Send for KindTest
impl Sync for KindTest
impl Unpin for KindTest
impl UnwindSafe for KindTest
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