Enum edn::query::Element
[−]
[src]
pub enum Element { Variable(Variable), Aggregate(Aggregate), Corresponding(Variable), Pull(Pull), }
Variants
Variable(Variable)
Aggregate(Aggregate)
Corresponding(Variable)
In a query with a max
or min
aggregate, a corresponding variable
(indicated in the query with (the ?var)
, is guaranteed to come from
the row that provided the max or min value. Queries with more than one
max
or min
cannot yield predictable behavior, and will err during
algebrizing.
Pull(Pull)
Methods
impl Element
[src]
Trait Implementations
impl Clone for Element
[src]
fn clone(&self) -> Element
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Element
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
[src]
Formats the value using the given formatter. Read more
impl Eq for Element
[src]
impl PartialEq for Element
[src]
fn eq(&self, __arg_0: &Element) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &Element) -> bool
[src]
This method tests for !=
.