pub trait ProviderExtClientCredentialsGrant: Provider + DynClone {
    fn client_password_in_request_body(&self) -> bool { ... }
    fn scopes_default(&self) -> Option<Vec<<Self as Provider>::Scope>> { ... }
    fn access_token_request_body_extra(
        &self,
        _body: &BodyWithClientCredentialsGrant<<Self as Provider>::Scope>
    ) -> Option<Result<Map<String, Value>, Box<dyn Error + Send + Sync + 'static>>> { ... } fn access_token_request_url_modifying(&self, _url: &mut Url) { ... } fn access_token_request_modifying(&self, _request: &mut Request<Body>) { ... } }

Provided Methods§

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Implementors§