pub trait TokenReaderFuture: SealedWrapper {
    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 Future of reqwest::Response.

Required Methods

Implementors