pub struct DailyActiveUserReportResponse {
pub daily_active_users: Option<Vec<Count>>,
pub total: Option<i64>,
}
Expand description
DailyActiveUserReportResponse : Response for the daily active user report.
Fields§
§daily_active_users: Option<Vec<Count>>
§total: Option<i64>
Implementations§
Source§impl DailyActiveUserReportResponse
impl DailyActiveUserReportResponse
Sourcepub fn new() -> DailyActiveUserReportResponse
pub fn new() -> DailyActiveUserReportResponse
Response for the daily active user report.
Trait Implementations§
Source§impl Clone for DailyActiveUserReportResponse
impl Clone for DailyActiveUserReportResponse
Source§fn clone(&self) -> DailyActiveUserReportResponse
fn clone(&self) -> DailyActiveUserReportResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for DailyActiveUserReportResponse
impl Default for DailyActiveUserReportResponse
Source§fn default() -> DailyActiveUserReportResponse
fn default() -> DailyActiveUserReportResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DailyActiveUserReportResponse
impl<'de> Deserialize<'de> for DailyActiveUserReportResponse
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 DailyActiveUserReportResponse
impl PartialEq for DailyActiveUserReportResponse
Source§fn eq(&self, other: &DailyActiveUserReportResponse) -> bool
fn eq(&self, other: &DailyActiveUserReportResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DailyActiveUserReportResponse
Auto Trait Implementations§
impl Freeze for DailyActiveUserReportResponse
impl RefUnwindSafe for DailyActiveUserReportResponse
impl Send for DailyActiveUserReportResponse
impl Sync for DailyActiveUserReportResponse
impl Unpin for DailyActiveUserReportResponse
impl UnwindSafe for DailyActiveUserReportResponse
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