#[non_exhaustive]pub enum Archive {
Show 13 variants
Table,
Actor,
CommentId,
Deleted,
Id,
Len,
MinorEdit,
Namespace,
PageId,
ParentId,
RevId,
Timestamp,
Title,
}Expand description
archive 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
Actor
ar_actor column
CommentId
ar_comment_id column
Deleted
ar_deleted column
Id
ar_id column
Len
ar_len column
MinorEdit
ar_minor_edit column
Namespace
ar_namespace column
PageId
ar_page_id column
ParentId
ar_parent_id column
RevId
ar_rev_id column
Timestamp
ar_timestamp column
Title
ar_title column
Trait Implementations§
Source§impl Iden for Archive
impl Iden for Archive
impl Copy for Archive
Auto Trait Implementations§
impl Freeze for Archive
impl RefUnwindSafe for Archive
impl Send for Archive
impl Sync for Archive
impl Unpin for Archive
impl UnsafeUnpin for Archive
impl UnwindSafe for Archive
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