#[non_exhaustive]pub enum ArchiveUserindex {
Show 13 variants
Table,
Actor,
CommentId,
Deleted,
Id,
Len,
MinorEdit,
Namespace,
PageId,
ParentId,
RevId,
Timestamp,
Title,
}Available on crate feature
toolforge only.Expand description
archive_userindex table
This is an optimized view for Toolforge users.
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 AsRef<str> for ArchiveUserindex
impl AsRef<str> for ArchiveUserindex
Source§impl Clone for ArchiveUserindex
impl Clone for ArchiveUserindex
Source§fn clone(&self) -> ArchiveUserindex
fn clone(&self) -> ArchiveUserindex
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Iden for ArchiveUserindex
impl Iden for ArchiveUserindex
impl Copy for ArchiveUserindex
Auto Trait Implementations§
impl Freeze for ArchiveUserindex
impl RefUnwindSafe for ArchiveUserindex
impl Send for ArchiveUserindex
impl Sync for ArchiveUserindex
impl Unpin for ArchiveUserindex
impl UnsafeUnpin for ArchiveUserindex
impl UnwindSafe for ArchiveUserindex
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