pub enum SelectorNode {
ElementSelector(ElementNode),
TextSelector(TextNode),
}
Expand description
Selector node type
Variants§
Trait Implementations§
Source§impl Clone for SelectorNode
impl Clone for SelectorNode
Source§fn clone(&self) -> SelectorNode
fn clone(&self) -> SelectorNode
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 moreSource§impl Debug for SelectorNode
impl Debug for SelectorNode
Source§impl Display for SelectorNode
impl Display for SelectorNode
Source§impl PartialEq for SelectorNode
impl PartialEq for SelectorNode
impl StructuralPartialEq for SelectorNode
Auto Trait Implementations§
impl Freeze for SelectorNode
impl RefUnwindSafe for SelectorNode
impl Send for SelectorNode
impl Sync for SelectorNode
impl Unpin for SelectorNode
impl UnwindSafe for SelectorNode
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