pub struct UserDetailsAuthenticator<S, E>{ /* private fields */ }Expand description
Authenticator that uses a UserDetailsService for credential validation.
§Spring Equivalent
Similar to DaoAuthenticationProvider in Spring Security.
§Example
ⓘ
let authenticator = UserDetailsAuthenticator::new(
my_user_details_service,
Argon2PasswordEncoder::new(),
);
// Authenticate user
let user = authenticator.authenticate("username", "password").await?;Implementations§
Source§impl<S, E> UserDetailsAuthenticator<S, E>
impl<S, E> UserDetailsAuthenticator<S, E>
Sourcepub fn new(service: S, encoder: E) -> UserDetailsAuthenticator<S, E>
pub fn new(service: S, encoder: E) -> UserDetailsAuthenticator<S, E>
Create a new authenticator with the given service and encoder.
Sourcepub async fn authenticate(
&self,
username: &str,
password: &str,
) -> Result<User, UserDetailsError>
pub async fn authenticate( &self, username: &str, password: &str, ) -> Result<User, UserDetailsError>
Authenticate a user with username and password.
Trait Implementations§
Source§impl<S, E> Clone for UserDetailsAuthenticator<S, E>
impl<S, E> Clone for UserDetailsAuthenticator<S, E>
Source§fn clone(&self) -> UserDetailsAuthenticator<S, E>
fn clone(&self) -> UserDetailsAuthenticator<S, E>
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 moreAuto Trait Implementations§
impl<S, E> Freeze for UserDetailsAuthenticator<S, E>
impl<S, E> RefUnwindSafe for UserDetailsAuthenticator<S, E>where
S: RefUnwindSafe,
E: RefUnwindSafe,
impl<S, E> Send for UserDetailsAuthenticator<S, E>
impl<S, E> Sync for UserDetailsAuthenticator<S, E>
impl<S, E> Unpin for UserDetailsAuthenticator<S, E>
impl<S, E> UnwindSafe for UserDetailsAuthenticator<S, E>where
S: RefUnwindSafe,
E: RefUnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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 more