pub struct RecordsStatsData {
pub appealed_count: Option<i64>,
pub escalated_count: Option<i64>,
pub pending_count: Option<i64>,
pub processed_count: Option<i64>,
pub reported_count: Option<i64>,
pub subject_count: Option<i64>,
pub takendown_count: Option<i64>,
pub total_reports: Option<i64>,
}
Available on crate feature
namespace-toolsozone
only.Expand description
Statistics about a set of record subject items
Fields§
§appealed_count: Option<i64>
Number of items that were appealed at least once
escalated_count: Option<i64>
Number of items that were escalated at least once
pending_count: Option<i64>
Number of item currently in “reviewOpen” or “reviewEscalated” state
processed_count: Option<i64>
Number of item currently in “reviewNone” or “reviewClosed” state
reported_count: Option<i64>
Number of items that were reported at least once
subject_count: Option<i64>
Total number of item in the set
takendown_count: Option<i64>
Number of item currently taken down
total_reports: Option<i64>
Cumulative sum of the number of reports on the items in the set
Trait Implementations§
Source§impl Clone for RecordsStatsData
impl Clone for RecordsStatsData
Source§fn clone(&self) -> RecordsStatsData
fn clone(&self) -> RecordsStatsData
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 RecordsStatsData
impl Debug for RecordsStatsData
Source§impl<'de> Deserialize<'de> for RecordsStatsData
impl<'de> Deserialize<'de> for RecordsStatsData
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 RecordsStatsData
impl PartialEq for RecordsStatsData
Source§impl Serialize for RecordsStatsData
impl Serialize for RecordsStatsData
impl Eq for RecordsStatsData
impl StructuralPartialEq for RecordsStatsData
Auto Trait Implementations§
impl Freeze for RecordsStatsData
impl RefUnwindSafe for RecordsStatsData
impl Send for RecordsStatsData
impl Sync for RecordsStatsData
impl Unpin for RecordsStatsData
impl UnwindSafe for RecordsStatsData
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.