pub struct ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant,{ /* private fields */ }
Implementations§
Trait Implementations§
Source§impl<P> Clone for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
impl<P> Clone for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
Source§fn clone(&self) -> ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>
fn clone(&self) -> ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>
Returns a copy 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 moreSource§impl<P> Debug for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Debug,
impl<P> Debug for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Debug,
Source§impl<P> Provider for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
impl<P> Provider for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
Source§impl<P> ProviderExtAuthorizationCodeGrant for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
impl<P> ProviderExtAuthorizationCodeGrant for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: ProviderExtAuthorizationCodeGrant + Clone,
fn redirect_uri(&self) -> Option<&RedirectUri>
fn oidc_support_type( &self, ) -> Option<ProviderExtAuthorizationCodeGrantOidcSupportType>
fn pkce_support_type( &self, ) -> Option<ProviderExtAuthorizationCodeGrantPkceSupportType>
fn scopes_default(&self) -> Option<Vec<<Self as Provider>::Scope>>
fn access_token_request_body_extra( &self, body: &AccessTokenRequestBody, ) -> Option<Map<String, Value>>
fn access_token_request_rendering( &self, body: &AccessTokenRequestBody, ) -> Option<Result<Request<Body>, Box<dyn Error + Send + Sync + 'static>>>
fn access_token_response_parsing( &self, response: &Response<Body>, ) -> Option<Result<Result<AccessTokenResponseSuccessfulBody<<Self as Provider>::Scope>, AccessTokenResponseErrorBody>, Box<dyn Error + Send + Sync + 'static>>>
Auto Trait Implementations§
impl<P> Freeze for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: Freeze,
impl<P> RefUnwindSafe for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: RefUnwindSafe,
impl<P> Send for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: Send,
impl<P> Sync for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: Sync,
impl<P> Unpin for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: Unpin,
impl<P> UnwindSafe for ProviderExtAuthorizationCodeGrantStringScopeWrapper<P>where
P: UnwindSafe,
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