pub struct TableQuery {
pub schema: Option<TableSchema>,
pub content_filters: Vec<ContentFilter>,
pub statistical_constraints: Vec<StatisticalConstraint>,
pub size_constraints: Option<SizeConstraints>,
}Expand description
Table query specification
Fields§
§schema: Option<TableSchema>Schema constraints
content_filters: Vec<ContentFilter>Content filters
statistical_constraints: Vec<StatisticalConstraint>Statistical constraints
size_constraints: Option<SizeConstraints>Size constraints
Trait Implementations§
Source§impl Clone for TableQuery
impl Clone for TableQuery
Source§fn clone(&self) -> TableQuery
fn clone(&self) -> TableQuery
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for TableQuery
impl RefUnwindSafe for TableQuery
impl Send for TableQuery
impl Sync for TableQuery
impl Unpin for TableQuery
impl UnwindSafe for TableQuery
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