pub struct PathExpr {
pub descendant: bool,
pub steps: Vec<PathStep>,
}Fields§
§descendant: boolTrue iff the path starts with .// (descendant axis). Without
it, the path is anchored at the constraint-declaring element.
steps: Vec<PathStep>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathExpr
impl RefUnwindSafe for PathExpr
impl Send for PathExpr
impl Sync for PathExpr
impl Unpin for PathExpr
impl UnsafeUnpin for PathExpr
impl UnwindSafe for PathExpr
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