pub struct CategoriesWithVisitorCountDataEntry {
pub category_id: i32,
pub current_user_count: i32,
pub max_user_count: i32,
}
Fields§
§category_id: i32
§current_user_count: i32
§max_user_count: i32
Trait Implementations§
source§impl Clone for CategoriesWithVisitorCountDataEntry
impl Clone for CategoriesWithVisitorCountDataEntry
source§fn clone(&self) -> CategoriesWithVisitorCountDataEntry
fn clone(&self) -> CategoriesWithVisitorCountDataEntry
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 Default for CategoriesWithVisitorCountDataEntry
impl Default for CategoriesWithVisitorCountDataEntry
source§fn default() -> CategoriesWithVisitorCountDataEntry
fn default() -> CategoriesWithVisitorCountDataEntry
Returns the “default value” for a type. Read more
source§impl PartialEq<CategoriesWithVisitorCountDataEntry> for CategoriesWithVisitorCountDataEntry
impl PartialEq<CategoriesWithVisitorCountDataEntry> for CategoriesWithVisitorCountDataEntry
source§fn eq(&self, other: &CategoriesWithVisitorCountDataEntry) -> bool
fn eq(&self, other: &CategoriesWithVisitorCountDataEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CategoriesWithVisitorCountDataEntry
Auto Trait Implementations§
impl RefUnwindSafe for CategoriesWithVisitorCountDataEntry
impl Send for CategoriesWithVisitorCountDataEntry
impl Sync for CategoriesWithVisitorCountDataEntry
impl Unpin for CategoriesWithVisitorCountDataEntry
impl UnwindSafe for CategoriesWithVisitorCountDataEntry
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