[][src]Struct druid_io::query::group_by::GroupBy

pub struct GroupBy {
    pub data_source: DataSource,
    pub dimensions: Vec<Dimension>,
    pub limit_spec: Option<LimitSpec>,
    pub having: Option<HavingSpec>,
    pub granularity: Granularity,
    pub filter: Option<Filter>,
    pub aggregations: Vec<Aggregation>,
    pub post_aggregations: Vec<PostAggregation>,
    pub intervals: Vec<String>,
    pub subtotal_spec: Vec<Vec<String>>,
    pub context: HashMap<String, String>,
}

Fields

data_source: DataSourcedimensions: Vec<Dimension>limit_spec: Option<LimitSpec>having: Option<HavingSpec>granularity: Granularityfilter: Option<Filter>aggregations: Vec<Aggregation>post_aggregations: Vec<PostAggregation>intervals: Vec<String>subtotal_spec: Vec<Vec<String>>context: HashMap<String, String>

Trait Implementations

impl Debug for GroupBy[src]

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

impl From<GroupBy> for Query[src]

impl Serialize for GroupBy[src]

Auto Trait Implementations

impl RefUnwindSafe for GroupBy

impl Send for GroupBy

impl Sync for GroupBy

impl Unpin for GroupBy

impl UnwindSafe for GroupBy

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.