pub struct TotalsReportResponse {
pub application_totals: Option<HashMap<String, Totals>>,
pub global_registrations: Option<i64>,
pub total_global_registrations: Option<i64>,
}
Expand description
TotalsReportResponse : The response from the total report. This report stores the total numbers for each application.
Fields§
§application_totals: Option<HashMap<String, Totals>>
§global_registrations: Option<i64>
§total_global_registrations: Option<i64>
Implementations§
source§impl TotalsReportResponse
impl TotalsReportResponse
sourcepub fn new() -> TotalsReportResponse
pub fn new() -> TotalsReportResponse
The response from the total report. This report stores the total numbers for each application.
Trait Implementations§
source§impl Clone for TotalsReportResponse
impl Clone for TotalsReportResponse
source§fn clone(&self) -> TotalsReportResponse
fn clone(&self) -> TotalsReportResponse
Returns a copy 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 TotalsReportResponse
impl Debug for TotalsReportResponse
source§impl Default for TotalsReportResponse
impl Default for TotalsReportResponse
source§fn default() -> TotalsReportResponse
fn default() -> TotalsReportResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TotalsReportResponse
impl<'de> Deserialize<'de> for TotalsReportResponse
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
source§impl PartialEq for TotalsReportResponse
impl PartialEq for TotalsReportResponse
source§fn eq(&self, other: &TotalsReportResponse) -> bool
fn eq(&self, other: &TotalsReportResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TotalsReportResponse
impl Serialize for TotalsReportResponse
impl StructuralPartialEq for TotalsReportResponse
Auto Trait Implementations§
impl RefUnwindSafe for TotalsReportResponse
impl Send for TotalsReportResponse
impl Sync for TotalsReportResponse
impl Unpin for TotalsReportResponse
impl UnwindSafe for TotalsReportResponse
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