pub enum FindElem {
Var(Var),
Aggregate(Aggregate),
Pull(Var, Edn),
}Expand description
One element of a find specification.
Variants§
Var(Var)
A plain variable.
Aggregate(Aggregate)
An aggregate call (op args… ?var).
Pull(Var, Edn)
A pull expression (pull ?e pattern).
Implementations§
Trait Implementations§
impl Eq for FindElem
impl StructuralPartialEq for FindElem
Auto Trait Implementations§
impl Freeze for FindElem
impl RefUnwindSafe for FindElem
impl Send for FindElem
impl Sync for FindElem
impl Unpin for FindElem
impl UnsafeUnpin for FindElem
impl UnwindSafe for FindElem
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