pub struct StatsBreakdownArgs {
pub site: 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>,
}Fields§
§site: StringSite domain or site_id to query.
property: StringProperty to breakdown by (e.g., event:page, visit:source).
metrics: Vec<String>Metrics to include (repeatable).
period: Option<String>Period string (e.g., 7d, 30d, month, custom).
date: Option<String>Custom date range (YYYY-MM-DD,YYYY-MM-DD).
filters: Vec<String>Filters to apply (repeatable, Plausible filter syntax).
properties: Vec<String>Event properties to include (repeatable).
compare: Option<String>Compare parameter (e.g., previous_period).
sort: Option<String>Sort parameter for breakdowns.
limit: Option<u32>Limit number of rows returned.
page: Option<u32>Page number (for paginated queries).
include: Option<String>Include parameter (e.g., previous).
Trait Implementations§
Source§impl Args for StatsBreakdownArgs
impl Args for StatsBreakdownArgs
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for StatsBreakdownArgs
impl Clone for StatsBreakdownArgs
Source§fn clone(&self) -> StatsBreakdownArgs
fn clone(&self) -> StatsBreakdownArgs
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 StatsBreakdownArgs
impl Debug for StatsBreakdownArgs
Source§impl Default for StatsBreakdownArgs
impl Default for StatsBreakdownArgs
Source§fn default() -> StatsBreakdownArgs
fn default() -> StatsBreakdownArgs
Returns the “default value” for a type. Read more
Source§impl FromArgMatches for StatsBreakdownArgs
impl FromArgMatches for StatsBreakdownArgs
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for StatsBreakdownArgs
impl RefUnwindSafe for StatsBreakdownArgs
impl Send for StatsBreakdownArgs
impl Sync for StatsBreakdownArgs
impl Unpin for StatsBreakdownArgs
impl UnwindSafe for StatsBreakdownArgs
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