[][src]Struct vega_lite_3::AggregatedFieldDef

pub struct AggregatedFieldDef {
    pub aggregated_field_def_as: Option<String>,
    pub field: Option<String>,
    pub op: Option<AggregateOp>,
}

Fields

aggregated_field_def_as: Option<String>

The output field names to use for each aggregated field.

field: Option<String>

The data field for which to compute aggregate function. This is required for all aggregation operations except "count".

op: Option<AggregateOp>

The aggregation operation to apply to the fields (e.g., sum, average or count). See the full list of supported aggregation operations for more information.

Trait Implementations

impl Clone for AggregatedFieldDef[src]

impl Debug for AggregatedFieldDef[src]

impl Default for AggregatedFieldDef[src]

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

impl Serialize for AggregatedFieldDef[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: Deserialize<'de>, 
[src]

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.