pub enum QueryElement {
Field {
key: String,
value: String,
},
ObjectOpeningBoundary {
key: String,
},
ObjectClosingBoundary,
}Variants§
Trait Implementations§
source§impl Clone for QueryElement
impl Clone for QueryElement
source§fn clone(&self) -> QueryElement
fn clone(&self) -> QueryElement
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for QueryElement
impl Debug for QueryElement
source§impl PartialEq<QueryElement> for QueryElement
impl PartialEq<QueryElement> for QueryElement
source§fn eq(&self, other: &QueryElement) -> bool
fn eq(&self, other: &QueryElement) -> bool
This method tests for
self and other values to be equal, and is used
by ==.