pub struct Auth0Provider { /* private fields */ }
Trait Implementations§
Source§impl Clone for Auth0Provider
impl Clone for Auth0Provider
Source§fn clone(&self) -> Auth0Provider
fn clone(&self) -> Auth0Provider
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl OAuthProvider for Auth0Provider
impl OAuthProvider for Auth0Provider
type Config = Auth0Config
type UserInfo = Auth0User
fn new(config: Self::Config) -> Self
fn validate_callback<'life0, 'async_trait>(
&'life0 self,
code: String,
) -> Pin<Box<dyn Future<Output = Result<ValidationResult<Self::UserInfo>, OAuthError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for Auth0Provider
impl !RefUnwindSafe for Auth0Provider
impl Send for Auth0Provider
impl Sync for Auth0Provider
impl Unpin for Auth0Provider
impl !UnwindSafe for Auth0Provider
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