[][src]Struct parse_mediawiki_sql::schemas::SiteStats

pub struct SiteStats {
    pub row_id: u32,
    pub total_edits: u64,
    pub good_articles: u64,
    pub total_pages: u64,
    pub users: u64,
    pub images: u64,
    pub active_users: u64,
}

Represents the site_stats table.

Fields

row_id: u32total_edits: u64good_articles: u64total_pages: u64users: u64images: u64active_users: u64

Trait Implementations

impl Clone for SiteStats[src]

impl Debug for SiteStats[src]

impl Eq for SiteStats[src]

impl<'input> FromSqlTuple<'input> for SiteStats[src]

impl Hash for SiteStats[src]

impl Ord for SiteStats[src]

impl PartialEq<SiteStats> for SiteStats[src]

impl PartialOrd<SiteStats> for SiteStats[src]

impl StructuralEq for SiteStats[src]

impl StructuralPartialEq for SiteStats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.