#[non_exhaustive]pub enum Revision {
Table,
Actor,
CommentId,
Deleted,
Id,
Len,
MinorEdit,
Page,
ParentId,
Timestamp,
}Expand description
revision 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
rev_actor column
CommentId
rev_comment_id column
Deleted
rev_deleted column
Id
rev_id column
Len
rev_len column
MinorEdit
rev_minor_edit column
Page
rev_page column
ParentId
rev_parent_id column
Timestamp
rev_timestamp column
Trait Implementations§
Source§impl Iden for Revision
impl Iden for Revision
impl Copy for Revision
Auto Trait Implementations§
impl Freeze for Revision
impl RefUnwindSafe for Revision
impl Send for Revision
impl Sync for Revision
impl Unpin for Revision
impl UnsafeUnpin for Revision
impl UnwindSafe for Revision
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