Trait ProviderExtJwtAuthorizationGrant

Source
pub trait ProviderExtJwtAuthorizationGrant: Provider + DynClone {
    // Required method
    fn assertion(&self) -> &str;

    // Provided methods
    fn scopes_default(&self) -> Option<Vec<<Self as Provider>::Scope>> { ... }
    fn access_token_request_body_extra(
        &self,
        _body: &BodyWithJwtAuthorizationGrant<<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>) { ... }
}

Required Methods§

Source

fn assertion(&self) -> &str

Provided Methods§

Trait Implementations§

Source§

impl<SCOPE> Debug for dyn ProviderExtJwtAuthorizationGrant<Scope = SCOPE> + Send + Sync
where SCOPE: Scope,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Implementors§