pub enum FindSpec {
Rel(Vec<FindElem>),
Coll(FindElem),
Tuple(Vec<FindElem>),
Scalar(FindElem),
}Expand description
The shape of :find.
Variants§
Rel(Vec<FindElem>)
Relation of tuples.
Coll(FindElem)
Collection [?x …].
Tuple(Vec<FindElem>)
Single tuple [?x ?y].
Scalar(FindElem)
Scalar ?x ..
Implementations§
Trait Implementations§
impl Eq for FindSpec
impl StructuralPartialEq for FindSpec
Auto Trait Implementations§
impl Freeze for FindSpec
impl RefUnwindSafe for FindSpec
impl Send for FindSpec
impl Sync for FindSpec
impl Unpin for FindSpec
impl UnsafeUnpin for FindSpec
impl UnwindSafe for FindSpec
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