[][src]Struct parse_mediawiki_sql::schemas::CategoryLinks

pub struct CategoryLinks<'input> {
    pub id: PageId,
    pub to: PageTitle,
    pub sortkey: Vec<u8>,
    pub timestamp: Timestamp,
    pub sortkey_prefix: Vec<u8>,
    pub collation: String,
    pub type: PageType<'input>,
}

Represents the categorylinks table.

Fields

id: PageIdto: PageTitlesortkey: Vec<u8>

Can be truncated in the middle of a UTF-8 sequence, so cannot be represented as a String.

timestamp: Timestampsortkey_prefix: Vec<u8>

Values added after this change, should be valid UTF-8, but older values may be invalid if they have been truncated in the middle of a multi-byte sequence.

collation: Stringtype: PageType<'input>

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'input> RefUnwindSafe for CategoryLinks<'input>

impl<'input> Send for CategoryLinks<'input>

impl<'input> Sync for CategoryLinks<'input>

impl<'input> Unpin for CategoryLinks<'input>

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