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

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

Represents the categorylinks table.

Fields

from: 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

Trait Implementations

impl Clone for CategoryLinks[src]

impl Debug for CategoryLinks[src]

impl Eq for CategoryLinks[src]

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

impl Hash for CategoryLinks[src]

impl Ord for CategoryLinks[src]

impl PartialEq<CategoryLinks> for CategoryLinks[src]

impl PartialOrd<CategoryLinks> for CategoryLinks[src]

impl StructuralEq for CategoryLinks[src]

impl StructuralPartialEq for CategoryLinks[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.