#[non_exhaustive]pub enum SiteStats {
Table,
ActiveUsers,
GoodArticles,
Images,
RowId,
TotalEdits,
TotalPages,
Users,
}Expand description
site_stats table
Documentation may be available on mediawiki.org.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Table
ActiveUsers
ss_active_users column
GoodArticles
ss_good_articles column
Images
ss_images column
RowId
ss_row_id column
TotalEdits
ss_total_edits column
TotalPages
ss_total_pages column
Users
ss_users column
Trait Implementations§
Source§impl Iden for SiteStats
impl Iden for SiteStats
impl Copy for SiteStats
Auto Trait Implementations§
impl Freeze for SiteStats
impl RefUnwindSafe for SiteStats
impl Send for SiteStats
impl Sync for SiteStats
impl Unpin for SiteStats
impl UnsafeUnpin for SiteStats
impl UnwindSafe for SiteStats
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