pub struct ChartQuery {
pub chart_types: Vec<ChartType>,
pub data_constraints: Vec<DataConstraint>,
pub trend_requirements: Vec<TrendRequirement>,
pub value_ranges: Vec<ValueRange>,
}Expand description
Chart query specification
Fields§
§chart_types: Vec<ChartType>Chart type filter
data_constraints: Vec<DataConstraint>Data constraints
trend_requirements: Vec<TrendRequirement>Trend requirements
value_ranges: Vec<ValueRange>Value range filters
Trait Implementations§
Source§impl Clone for ChartQuery
impl Clone for ChartQuery
Source§fn clone(&self) -> ChartQuery
fn clone(&self) -> ChartQuery
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 ChartQuery
impl RefUnwindSafe for ChartQuery
impl Send for ChartQuery
impl Sync for ChartQuery
impl Unpin for ChartQuery
impl UnwindSafe for ChartQuery
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