[][src]Struct parse_mediawiki_sql::schemas::ProtectedTitles

pub struct ProtectedTitles<'input> {
    pub namespace: PageNamespace,
    pub title: PageTitle,
    pub user: UserId,
    pub reason_id: CommentId,
    pub timestamp: Timestamp,
    pub expiry: Expiry,
    pub create_perm: ProtectionLevel<'input>,
}

Represents the protected_titles table.

Fields

namespace: PageNamespacetitle: PageTitleuser: UserIdreason_id: CommentIdtimestamp: Timestampexpiry: Expirycreate_perm: ProtectionLevel<'input>

Trait Implementations

impl<'input> Clone for ProtectedTitles<'input>[src]

impl<'input> Debug for ProtectedTitles<'input>[src]

impl<'input> Eq for ProtectedTitles<'input>[src]

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

impl<'input> Hash for ProtectedTitles<'input>[src]

impl<'input> Ord for ProtectedTitles<'input>[src]

impl<'input> PartialEq<ProtectedTitles<'input>> for ProtectedTitles<'input>[src]

impl<'input> PartialOrd<ProtectedTitles<'input>> for ProtectedTitles<'input>[src]

impl<'input> StructuralEq for ProtectedTitles<'input>[src]

impl<'input> StructuralPartialEq for ProtectedTitles<'input>[src]

Auto Trait Implementations

impl<'input> RefUnwindSafe for ProtectedTitles<'input>

impl<'input> Send for ProtectedTitles<'input>

impl<'input> Sync for ProtectedTitles<'input>

impl<'input> Unpin for ProtectedTitles<'input>

impl<'input> UnwindSafe for ProtectedTitles<'input>

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.