pub trait TokenReader: Sealed {
    // Required method
    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§

source

fn parse_oauth_token<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<TokenResponse>> + 'async_trait>>where Self: 'async_trait,

Implementations on Foreign Types§

source§

impl TokenReader for Response

source§

fn parse_oauth_token<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<TokenResponse>> + 'async_trait>>where Self: 'async_trait,

Implementors§