pub trait TokenReader: Sealed {
    fn parse_oauth_token<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<TokenResponse>> + 'async_trait>>
    where
        Self: 'async_trait
; }
Expand description

Add parse_oauth_token feature to reqwest::Response.

Required Methods

Implementations on Foreign Types

Implementors