#[non_exhaustive]pub enum Page {
Show 13 variants
Table,
ContentModel,
Id,
IsNew,
IsRedirect,
Lang,
Latest,
Len,
LinksUpdated,
Namespace,
Random,
Title,
Touched,
}Expand description
page table
Documentation may be available on mediawiki.org.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Table
ContentModel
page_content_model column
Id
page_id column
IsNew
page_is_new column
IsRedirect
page_is_redirect column
Lang
page_lang column
Latest
page_latest column
Len
page_len column
LinksUpdated
page_links_updated column
Namespace
page_namespace column
Random
page_random column
Title
page_title column
Touched
page_touched column
Trait Implementations§
Source§impl Iden for Page
impl Iden for Page
impl Copy for Page
Auto Trait Implementations§
impl Freeze for Page
impl RefUnwindSafe for Page
impl Send for Page
impl Sync for Page
impl Unpin for Page
impl UnsafeUnpin for Page
impl UnwindSafe for Page
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more