pub struct UserManager<'a> { /* private fields */ }Expand description
User management operations
Implementations§
Source§impl<'a> UserManager<'a>
impl<'a> UserManager<'a>
Sourcepub fn new(conn: &'a Connection) -> Self
pub fn new(conn: &'a Connection) -> Self
Create a new user manager
Sourcepub fn get_user_by_username(&self, username: &str) -> Result<Option<User>>
pub fn get_user_by_username(&self, username: &str) -> Result<Option<User>>
Get user by username
Sourcepub fn verify_password(
&self,
username: &str,
password: &str,
) -> Result<Option<User>>
pub fn verify_password( &self, username: &str, password: &str, ) -> Result<Option<User>>
Verify user password
Sourcepub fn update_user(&self, user: &User) -> Result<()>
pub fn update_user(&self, user: &User) -> Result<()>
Update user
Sourcepub fn delete_user(&self, id: &UserId) -> Result<bool>
pub fn delete_user(&self, id: &UserId) -> Result<bool>
Delete user
Auto Trait Implementations§
impl<'a> Freeze for UserManager<'a>
impl<'a> !RefUnwindSafe for UserManager<'a>
impl<'a> !Send for UserManager<'a>
impl<'a> !Sync for UserManager<'a>
impl<'a> Unpin for UserManager<'a>
impl<'a> UnsafeUnpin for UserManager<'a>
impl<'a> !UnwindSafe for UserManager<'a>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.