[][src]Struct parse_mediawiki_sql::schemas::Redirect

pub struct Redirect<'input> {
    pub from: PageId,
    pub namespace: PageNamespace,
    pub title: PageTitle,
    pub interwiki: Option<&'input str>,
    pub fragment: Option<String>,
}

Represents the redirect table.

Fields

from: PageIdnamespace: PageNamespacetitle: PageTitleinterwiki: Option<&'input str>fragment: Option<String>

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'input> RefUnwindSafe for Redirect<'input>

impl<'input> Send for Redirect<'input>

impl<'input> Sync for Redirect<'input>

impl<'input> Unpin for Redirect<'input>

impl<'input> UnwindSafe for Redirect<'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.