pub struct BreakdownQuery {
pub site_id: String,
pub property: String,
pub metrics: Vec<String>,
pub period: Option<String>,
pub date: Option<String>,
pub filters: Vec<String>,
pub properties: Vec<String>,
pub compare: Option<String>,
pub sort: Option<String>,
pub limit: Option<u32>,
pub page: Option<u32>,
pub include: Option<String>,
}Expand description
Query parameters for the stats breakdown endpoint.
Fields§
§site_id: String§property: String§metrics: Vec<String>§period: Option<String>§date: Option<String>§filters: Vec<String>§properties: Vec<String>§compare: Option<String>§sort: Option<String>§limit: Option<u32>§page: Option<u32>§include: Option<String>Trait Implementations§
Source§impl Clone for BreakdownQuery
impl Clone for BreakdownQuery
Source§fn clone(&self) -> BreakdownQuery
fn clone(&self) -> BreakdownQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BreakdownQuery
impl Debug for BreakdownQuery
Source§impl Default for BreakdownQuery
impl Default for BreakdownQuery
Source§fn default() -> BreakdownQuery
fn default() -> BreakdownQuery
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BreakdownQuery
impl RefUnwindSafe for BreakdownQuery
impl Send for BreakdownQuery
impl Sync for BreakdownQuery
impl Unpin for BreakdownQuery
impl UnwindSafe for BreakdownQuery
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