pub struct UsersStats {
pub total_users_count: Option<i32>,
}Fields§
§total_users_count: Option<i32>Implementations§
Source§impl UsersStats
impl UsersStats
pub fn new() -> UsersStats
Trait Implementations§
Source§impl Clone for UsersStats
impl Clone for UsersStats
Source§fn clone(&self) -> UsersStats
fn clone(&self) -> UsersStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UsersStats
impl Debug for UsersStats
Source§impl Default for UsersStats
impl Default for UsersStats
Source§fn default() -> UsersStats
fn default() -> UsersStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsersStats
impl<'de> Deserialize<'de> for UsersStats
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 UsersStats
impl PartialEq for UsersStats
Source§impl Serialize for UsersStats
impl Serialize for UsersStats
impl StructuralPartialEq for UsersStats
Auto Trait Implementations§
impl Freeze for UsersStats
impl RefUnwindSafe for UsersStats
impl Send for UsersStats
impl Sync for UsersStats
impl Unpin for UsersStats
impl UnsafeUnpin for UsersStats
impl UnwindSafe for UsersStats
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