[][src]Struct druid_io::query::timeseries::Timeseries

pub struct Timeseries {
    pub data_source: DataSource,
    pub granularity: Granularity,
    pub descending: bool,
    pub intervals: Vec<String>,
    pub filter: Option<Filter>,
    pub aggregations: Vec<Aggregation>,
    pub post_aggregations: Vec<PostAggregation>,
    pub limit: Option<usize>,
    pub context: HashMap<String, String>,
}

Fields

data_source: DataSourcegranularity: Granularitydescending: boolintervals: Vec<String>filter: Option<Filter>aggregations: Vec<Aggregation>post_aggregations: Vec<PostAggregation>limit: Option<usize>context: HashMap<String, String>

Trait Implementations

impl Debug for Timeseries[src]

impl<'de> Deserialize<'de> for Timeseries[src]

impl From<Timeseries> for Query[src]

impl Serialize for Timeseries[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.