pub struct UserMetricsWithTrends {
pub total_users: i64,
pub active_users: i64,
pub new_users_today: i64,
pub new_users_week: i64,
pub new_users_month: i64,
pub users_trend_7d: f64,
pub users_trend_30d: f64,
pub active_trend_7d: f64,
pub active_trend_30d: f64,
}Fields§
§total_users: i64§active_users: i64§new_users_today: i64§new_users_week: i64§new_users_month: i64§users_trend_7d: f64§users_trend_30d: f64§active_trend_7d: f64§active_trend_30d: f64Trait Implementations§
Source§impl Clone for UserMetricsWithTrends
impl Clone for UserMetricsWithTrends
Source§fn clone(&self) -> UserMetricsWithTrends
fn clone(&self) -> UserMetricsWithTrends
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 UserMetricsWithTrends
impl Debug for UserMetricsWithTrends
Source§impl Default for UserMetricsWithTrends
impl Default for UserMetricsWithTrends
Source§fn default() -> UserMetricsWithTrends
fn default() -> UserMetricsWithTrends
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserMetricsWithTrends
impl<'de> Deserialize<'de> for UserMetricsWithTrends
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 Serialize for UserMetricsWithTrends
impl Serialize for UserMetricsWithTrends
impl Copy for UserMetricsWithTrends
Auto Trait Implementations§
impl Freeze for UserMetricsWithTrends
impl RefUnwindSafe for UserMetricsWithTrends
impl Send for UserMetricsWithTrends
impl Sync for UserMetricsWithTrends
impl Unpin for UserMetricsWithTrends
impl UnwindSafe for UserMetricsWithTrends
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