Trait Endpoint

Source
pub trait Endpoint {
    // Required methods
    fn scopes(&mut self) -> &[Scope];
    fn issuer(&mut self) -> &mut (dyn Issuer + Send);
}

Required Methods§

Source

fn scopes(&mut self) -> &[Scope]

The list of possible scopes required by the resource endpoint.

Source

fn issuer(&mut self) -> &mut (dyn Issuer + Send)

Recover and test the provided refresh token then issue new tokens.

Implementors§