pub struct QueryOptions {
pub comment: Option<String>,
pub raw_sql: Option<String>,
pub raw_sql_search_criteria: Vec<String>,
pub dynamic_properties: Vec<RawDynamicProperty>,
pub raw_projections: Vec<RawProjection>,
pub relation_aggregates: Vec<RelationAggregate>,
pub object_group_bys: Vec<ObjectGroupBy>,
pub facets: Vec<FacetRequest>,
}Fields§
§comment: Option<String>§raw_sql: Option<String>§raw_sql_search_criteria: Vec<String>§dynamic_properties: Vec<RawDynamicProperty>§raw_projections: Vec<RawProjection>§relation_aggregates: Vec<RelationAggregate>§object_group_bys: Vec<ObjectGroupBy>§facets: Vec<FacetRequest>Trait Implementations§
Source§impl Clone for QueryOptions
impl Clone for QueryOptions
Source§fn clone(&self) -> QueryOptions
fn clone(&self) -> QueryOptions
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 QueryOptions
impl Debug for QueryOptions
Source§impl Default for QueryOptions
impl Default for QueryOptions
Source§fn default() -> QueryOptions
fn default() -> QueryOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for QueryOptions
impl PartialEq for QueryOptions
Source§fn eq(&self, other: &QueryOptions) -> bool
fn eq(&self, other: &QueryOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryOptions
Auto Trait Implementations§
impl Freeze for QueryOptions
impl RefUnwindSafe for QueryOptions
impl Send for QueryOptions
impl Sync for QueryOptions
impl Unpin for QueryOptions
impl UnsafeUnpin for QueryOptions
impl UnwindSafe for QueryOptions
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