pub struct PunishmentStats {
pub watchdog_last_minute: i64,
pub watchdog_rolling_daily: i64,
pub watchdog_total: i64,
pub staff_rolling_daily: i64,
pub staff_total: i64,
}Expand description
Network-wide moderation statistics, as returned by punishmentstats.
Fields§
§watchdog_last_minute: i64§watchdog_rolling_daily: i64§watchdog_total: i64§staff_rolling_daily: i64§staff_total: i64Trait Implementations§
Source§impl Clone for PunishmentStats
impl Clone for PunishmentStats
Source§fn clone(&self) -> PunishmentStats
fn clone(&self) -> PunishmentStats
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 PunishmentStats
impl Debug for PunishmentStats
Source§impl<'de> Deserialize<'de> for PunishmentStats
impl<'de> Deserialize<'de> for PunishmentStats
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 PunishmentStats
impl RefUnwindSafe for PunishmentStats
impl Send for PunishmentStats
impl Sync for PunishmentStats
impl Unpin for PunishmentStats
impl UnsafeUnpin for PunishmentStats
impl UnwindSafe for PunishmentStats
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