#[non_exhaustive]pub enum User {
Show 17 variants
Table,
Editcount,
Email,
EmailAuthenticated,
EmailToken,
EmailTokenExpires,
Id,
IsTemp,
Name,
NewpassTime,
Newpassword,
Password,
PasswordExpires,
RealName,
Registration,
Token,
Touched,
}Expand description
user 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
Editcount
user_editcount column
user_email column
EmailAuthenticated
user_email_authenticated column
EmailToken
user_email_token column
EmailTokenExpires
user_email_token_expires column
Id
user_id column
IsTemp
user_is_temp column
Name
user_name column
NewpassTime
user_newpass_time column
Newpassword
user_newpassword column
Password
user_password column
PasswordExpires
user_password_expires column
RealName
user_real_name column
Registration
user_registration column
Token
user_token column
Touched
user_touched column
Trait Implementations§
Source§impl Iden for User
impl Iden for User
impl Copy for User
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnsafeUnpin for User
impl UnwindSafe for User
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