pub struct Pivot {
pub field_names: Option<Vec<String>>,
pub order_bys: Option<Vec<OrderBy>>,
pub offset: Option<String>,
pub limit: Option<String>,
pub metric_aggregations: Option<Vec<MetricAggregation>>,
}
Expand description
https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/Pivot
Fields§
§field_names: Option<Vec<String>>
§order_bys: Option<Vec<OrderBy>>
§offset: Option<String>
§limit: Option<String>
§metric_aggregations: Option<Vec<MetricAggregation>>
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>,
Deserialize this value from the given Serde deserializer. Read more
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
Mutably borrows from an owned value. Read more