pub struct Oidc { /* private fields */ }Implementations§
Source§impl Oidc
impl Oidc
pub fn from_config(config: OidcDiscovery) -> Self
Trait Implementations§
Source§impl SimpleOAuthProvider for Oidc
impl SimpleOAuthProvider for Oidc
The authorization endpoint of the provider
Source§fn user_info_url(&self) -> &str
fn user_info_url(&self) -> &str
The URL to fetch the user info from the provider
Source§fn default_scopes(&self) -> &'static [&'static str]
fn default_scopes(&self) -> &'static [&'static str]
Minimum scopes needed to get basic profile info (id, name, username). Email is not included
by default - the user can specify that by passing
in custom scopes when calling
client.authorize_url()Auto Trait Implementations§
impl Freeze for Oidc
impl RefUnwindSafe for Oidc
impl Send for Oidc
impl Sync for Oidc
impl Unpin for Oidc
impl UnsafeUnpin for Oidc
impl UnwindSafe for Oidc
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