pub struct ConjunctiveQuery {
pub atoms: Vec<QueryAtom>,
}Expand description
Conjunctive query (AND of atoms).
Fields§
§atoms: Vec<QueryAtom>Query atoms.
Trait Implementations§
Source§impl Clone for ConjunctiveQuery
impl Clone for ConjunctiveQuery
Source§fn clone(&self) -> ConjunctiveQuery
fn clone(&self) -> ConjunctiveQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConjunctiveQuery
impl Debug for ConjunctiveQuery
Source§impl Default for ConjunctiveQuery
impl Default for ConjunctiveQuery
Source§fn default() -> ConjunctiveQuery
fn default() -> ConjunctiveQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConjunctiveQuery
impl RefUnwindSafe for ConjunctiveQuery
impl Send for ConjunctiveQuery
impl Sync for ConjunctiveQuery
impl Unpin for ConjunctiveQuery
impl UnsafeUnpin for ConjunctiveQuery
impl UnwindSafe for ConjunctiveQuery
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