[][src]Enum druid_io::query::group_by::PostAggregation

pub enum PostAggregation {
    Arithmetic {
        name: String,
        function: String,
        fields: Vec<PostAggregator>,
        ordering: Option<String>,
    },
    DoubleGreatest {
        name: String,
        fields: Vec<PostAggregation>,
    },
    LongGreatest {
        name: String,
        fields: Vec<PostAggregation>,
    },
    LongLeast {
        name: String,
        fields: Vec<PostAggregation>,
    },
    DoubleLeast {
        name: String,
        fields: Vec<PostAggregation>,
    },
    Javascript {
        name: String,
        field_names: Vec<String>,
        function: String,
    },
}

Variants

Arithmetic

Fields of Arithmetic

name: Stringfunction: Stringfields: Vec<PostAggregator>ordering: Option<String>
DoubleGreatest

Fields of DoubleGreatest

name: Stringfields: Vec<PostAggregation>
LongGreatest

Fields of LongGreatest

name: Stringfields: Vec<PostAggregation>
LongLeast

Fields of LongLeast

name: Stringfields: Vec<PostAggregation>
DoubleLeast

Fields of DoubleLeast

name: Stringfields: Vec<PostAggregation>
Javascript

Fields of Javascript

name: Stringfield_names: Vec<String>function: String

Trait Implementations

impl Debug for PostAggregation[src]

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

impl Serialize for PostAggregation[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.