Struct liserk_shared::query::CompoundQuery
source · pub struct CompoundQuery {
pub query_type: QueryType,
pub queries: Vec<Query>,
}
Expand description
Represents a compound query composed of multiple Query
s.
A CompoundQuery
allows for complex query logic by combining multiple Query
s
using a specified QueryType
(e.g., And, Or).
Fields§
§query_type: QueryType
§queries: Vec<Query>
Implementations§
Trait Implementations§
source§impl Clone for CompoundQuery
impl Clone for CompoundQuery
source§fn clone(&self) -> CompoundQuery
fn clone(&self) -> CompoundQuery
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 CompoundQuery
impl Debug for CompoundQuery
source§impl<'de> Deserialize<'de> for CompoundQuery
impl<'de> Deserialize<'de> for CompoundQuery
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<CompoundQuery> for CompoundQuery
impl PartialEq<CompoundQuery> for CompoundQuery
source§fn eq(&self, other: &CompoundQuery) -> bool
fn eq(&self, other: &CompoundQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CompoundQuery
impl Serialize for CompoundQuery
impl Eq for CompoundQuery
impl StructuralEq for CompoundQuery
impl StructuralPartialEq for CompoundQuery
Auto Trait Implementations§
impl RefUnwindSafe for CompoundQuery
impl Send for CompoundQuery
impl Sync for CompoundQuery
impl Unpin for CompoundQuery
impl UnwindSafe for CompoundQuery
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