pub struct AppStats {
pub app_id: String,
pub user_count: u32,
pub active_user_count: u32,
pub total_storage_mb: f64,
pub total_connections: u32,
pub recent_users: Vec<RecentUser>,
}Fields§
§app_id: String§user_count: u32§active_user_count: u32§total_storage_mb: f64§total_connections: u32§recent_users: Vec<RecentUser>Trait Implementations§
Source§impl<'de> Deserialize<'de> for AppStats
impl<'de> Deserialize<'de> for AppStats
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
Auto Trait Implementations§
impl Freeze for AppStats
impl RefUnwindSafe for AppStats
impl Send for AppStats
impl Sync for AppStats
impl Unpin for AppStats
impl UnsafeUnpin for AppStats
impl UnwindSafe for AppStats
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