[][src]Struct parse_mediawiki_sql::schemas::PageProps

pub struct PageProps<'input> {
    pub page: PageId,
    pub name: &'input str,
    pub value: Vec<u8>,
    pub sortkey: Option<NotNan<f64>>,
}

Represents the page_props table.

Fields

page: PageIdname: &'input strvalue: Vec<u8>sortkey: Option<NotNan<f64>>

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'input> RefUnwindSafe for PageProps<'input>

impl<'input> Send for PageProps<'input>

impl<'input> Sync for PageProps<'input>

impl<'input> Unpin for PageProps<'input>

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