[][src]Struct parse_mediawiki_sql::schemas::Image

pub struct Image<'input> {
    pub name: PageTitle,
    pub size: u32,
    pub width: i32,
    pub height: i32,
    pub metadata: String,
    pub bits: i32,
    pub media_type: MediaType<'input>,
    pub major_mime: MajorMime<'input>,
    pub minor_mime: MinorMime<'input>,
    pub description_id: CommentId,
    pub actor: ActorId,
    pub timestamp: Timestamp,
    pub sha1: Sha1<'input>,
}

Represents the image table.

Fields

name: PageTitlesize: u32width: i32height: i32metadata: Stringbits: i32media_type: MediaType<'input>major_mime: MajorMime<'input>minor_mime: MinorMime<'input>description_id: CommentIdactor: ActorIdtimestamp: Timestampsha1: Sha1<'input>

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

impl<'input> RefUnwindSafe for Image<'input>

impl<'input> Send for Image<'input>

impl<'input> Sync for Image<'input>

impl<'input> Unpin for Image<'input>

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