pub struct SelectorResult {
pub xpath: String,
pub xpath_default_namespace: Option<String>,
pub ns_snapshot: NamespaceContextSnapshot,
pub id: Option<String>,
pub annotation: Option<Annotation>,
pub source: Option<SourceRef>,
}Expand description
Selector result
Fields§
§xpath: String§xpath_default_namespace: Option<String>§ns_snapshot: NamespaceContextSnapshot§id: Option<String>§annotation: Option<Annotation>§source: Option<SourceRef>Trait Implementations§
Source§impl Clone for SelectorResult
impl Clone for SelectorResult
Source§fn clone(&self) -> SelectorResult
fn clone(&self) -> SelectorResult
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 SelectorResult
impl RefUnwindSafe for SelectorResult
impl Send for SelectorResult
impl Sync for SelectorResult
impl Unpin for SelectorResult
impl UnsafeUnpin for SelectorResult
impl UnwindSafe for SelectorResult
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