pub struct MaintenanceTags {
pub citation_needed_count: Option<u64>,
pub pov_count: Option<u64>,
pub clarification_needed_count: Option<u64>,
pub update_count: Option<u64>,
}Expand description
Maintenance template counts.
Counts of occurrences of certain templates in the article body. These indicate areas that may need editor attention.
Fields§
§citation_needed_count: Option<u64>Citation needed count
pov_count: Option<u64>POV tag count
clarification_needed_count: Option<u64>Clarification needed count
update_count: Option<u64>Update needed count
Trait Implementations§
Source§impl Clone for MaintenanceTags
impl Clone for MaintenanceTags
Source§fn clone(&self) -> MaintenanceTags
fn clone(&self) -> MaintenanceTags
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 MaintenanceTags
impl Debug for MaintenanceTags
Source§impl<'de> Deserialize<'de> for MaintenanceTags
impl<'de> Deserialize<'de> for MaintenanceTags
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 MaintenanceTags
impl PartialEq for MaintenanceTags
Source§impl Serialize for MaintenanceTags
impl Serialize for MaintenanceTags
impl StructuralPartialEq for MaintenanceTags
Auto Trait Implementations§
impl Freeze for MaintenanceTags
impl RefUnwindSafe for MaintenanceTags
impl Send for MaintenanceTags
impl Sync for MaintenanceTags
impl Unpin for MaintenanceTags
impl UnsafeUnpin for MaintenanceTags
impl UnwindSafe for MaintenanceTags
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