pub enum ParsedSelector {
Css(String),
Text {
text: String,
element: Option<String>,
},
XPath(String),
}Expand description
Represents a parsed selector.
Variants§
Trait Implementations§
Source§impl Clone for ParsedSelector
impl Clone for ParsedSelector
Source§fn clone(&self) -> ParsedSelector
fn clone(&self) -> ParsedSelector
Returns a duplicate 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 ParsedSelector
impl Debug for ParsedSelector
Source§impl PartialEq for ParsedSelector
impl PartialEq for ParsedSelector
impl StructuralPartialEq for ParsedSelector
Auto Trait Implementations§
impl Freeze for ParsedSelector
impl RefUnwindSafe for ParsedSelector
impl Send for ParsedSelector
impl Sync for ParsedSelector
impl Unpin for ParsedSelector
impl UnwindSafe for ParsedSelector
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