pub struct Statistics<'a> { /* private fields */ }
Implementations§
Source§impl<'a> Statistics<'a>
impl<'a> Statistics<'a>
Sourcepub async fn aggregate_app_stats(
&self,
__arg1: AggregateAppStatsOptions,
options: Option<PostOptions>,
) -> Result<AppUsageStatsOut>
pub async fn aggregate_app_stats( &self, __arg1: AggregateAppStatsOptions, options: Option<PostOptions>, ) -> Result<AppUsageStatsOut>
Creates a background task to calculate the message destinations for all applications in the environment.
Note that this endpoint is asynchronous. You will need to poll the Get Background Task
endpoint to retrieve the results of the operation.
Sourcepub async fn aggregate_event_types(&self) -> Result<AggregateEventTypesOut>
pub async fn aggregate_event_types(&self) -> Result<AggregateEventTypesOut>
Creates a background task to calculate the listed event types for all apps in the organization.
Note that this endpoint is asynchronous. You will need to poll the Get Background Task
endpoint to retrieve the results of the operation.
Auto Trait Implementations§
impl<'a> Freeze for Statistics<'a>
impl<'a> !RefUnwindSafe for Statistics<'a>
impl<'a> Send for Statistics<'a>
impl<'a> Sync for Statistics<'a>
impl<'a> Unpin for Statistics<'a>
impl<'a> !UnwindSafe for Statistics<'a>
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