pub struct ReporterStatsData {
pub account_report_count: i64,
pub did: Did,
pub labeled_account_count: i64,
pub labeled_record_count: i64,
pub record_report_count: i64,
pub reported_account_count: i64,
pub reported_record_count: i64,
pub takendown_account_count: i64,
pub takendown_record_count: i64,
}
Available on crate feature
namespace-toolsozone
only.Fields§
§account_report_count: i64
The total number of reports made by the user on accounts.
did: Did
§labeled_account_count: i64
The total number of accounts labeled as a result of the user’s reports.
labeled_record_count: i64
The total number of records labeled as a result of the user’s reports.
record_report_count: i64
The total number of reports made by the user on records.
reported_account_count: i64
The total number of accounts reported by the user.
reported_record_count: i64
The total number of records reported by the user.
takendown_account_count: i64
The total number of accounts taken down as a result of the user’s reports.
takendown_record_count: i64
The total number of records taken down as a result of the user’s reports.
Trait Implementations§
Source§impl Clone for ReporterStatsData
impl Clone for ReporterStatsData
Source§fn clone(&self) -> ReporterStatsData
fn clone(&self) -> ReporterStatsData
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 ReporterStatsData
impl Debug for ReporterStatsData
Source§impl<'de> Deserialize<'de> for ReporterStatsData
impl<'de> Deserialize<'de> for ReporterStatsData
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 ReporterStatsData
impl PartialEq for ReporterStatsData
Source§impl Serialize for ReporterStatsData
impl Serialize for ReporterStatsData
impl Eq for ReporterStatsData
impl StructuralPartialEq for ReporterStatsData
Auto Trait Implementations§
impl Freeze for ReporterStatsData
impl RefUnwindSafe for ReporterStatsData
impl Send for ReporterStatsData
impl Sync for ReporterStatsData
impl Unpin for ReporterStatsData
impl UnwindSafe for ReporterStatsData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.