[][src]Struct vega_lite_3::JoinAggregateFieldDef

pub struct JoinAggregateFieldDef {
    pub join_aggregate_field_def_as: Option<String>,
    pub field: Option<String>,
    pub op: Option<AggregateOp>,
}

Fields

join_aggregate_field_def_as: Option<String>

The output name for the join aggregate operation.

field: Option<String>

The data field for which to compute the aggregate function. This can be omitted for functions that do not operate over a field such as count.

op: Option<AggregateOp>

The aggregation operation to apply (e.g., sum, average or count). See the list of all supported operations here.

Trait Implementations

impl Clone for JoinAggregateFieldDef[src]

impl Debug for JoinAggregateFieldDef[src]

impl Serialize for JoinAggregateFieldDef[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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