pub struct OAuthClientConfig<S0, S1, M, D, H>where
M: TryIntoOAuthClientMetadata,{
pub client_metadata: M,
pub keys: Option<Vec<Jwk>>,
pub state_store: S0,
pub session_store: S1,
pub resolver: OAuthResolverConfig<D, H>,
}
Fields§
§client_metadata: M
§keys: Option<Vec<Jwk>>
§state_store: S0
§session_store: S1
§resolver: OAuthResolverConfig<D, H>
Auto Trait Implementations§
impl<S0, S1, M, D, H> Freeze for OAuthClientConfig<S0, S1, M, D, H>
impl<S0, S1, M, D, H> RefUnwindSafe for OAuthClientConfig<S0, S1, M, D, H>
impl<S0, S1, M, D, H> Send for OAuthClientConfig<S0, S1, M, D, H>
impl<S0, S1, M, D, H> Sync for OAuthClientConfig<S0, S1, M, D, H>
impl<S0, S1, M, D, H> Unpin for OAuthClientConfig<S0, S1, M, D, H>
impl<S0, S1, M, D, H> UnwindSafe for OAuthClientConfig<S0, S1, M, D, H>
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