pub struct Pivot {
pub field_names: Option<Vec<String>>,
pub limit: Option<i64>,
pub metric_aggregations: Option<Vec<String>>,
pub offset: Option<i64>,
pub order_bys: Option<Vec<OrderBy>>,
}
Expand description
Describes the visible dimension columns and rows in the report response.
This type is not used in any activity, and only used as part of another schema.
Fields§
§field_names: Option<Vec<String>>
Dimension names for visible columns in the report response. Including “dateRange” produces a date range column; for each row in the response, dimension values in the date range column will indicate the corresponding date range from the request.
limit: Option<i64>
The number of unique combinations of dimension values to return in this pivot. The limit
parameter is required. A limit
of 10,000 is common for single pivot requests. The product of the limit
for each pivot
in a RunPivotReportRequest
must not exceed 250,000. For example, a two pivot request with limit: 1000
in each pivot will fail because the product is 1,000,000
.
metric_aggregations: Option<Vec<String>>
Aggregate the metrics by dimensions in this pivot using the specified metric_aggregations.
offset: Option<i64>
The row count of the start row. The first row is counted as row 0.
order_bys: Option<Vec<OrderBy>>
Specifies how dimensions are ordered in the pivot. In the first Pivot, the OrderBys determine Row and PivotDimensionHeader ordering; in subsequent Pivots, the OrderBys determine only PivotDimensionHeader ordering. Dimensions specified in these OrderBys must be a subset of Pivot.field_names.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pivot
impl<'de> Deserialize<'de> for Pivot
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for Pivot
Auto Trait Implementations§
impl Freeze for Pivot
impl RefUnwindSafe for Pivot
impl Send for Pivot
impl Sync for Pivot
impl Unpin for Pivot
impl UnwindSafe for Pivot
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more