[][src]Trait reqwest_oauth1::TokenReaderFuture

pub trait TokenReaderFuture: SealedWrapper {
#[must_use]    fn parse_oauth_token<'async_trait>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<TokenResponse>> + 'async_trait>>
    where
        Self: 'async_trait
; }

Add parse_oauth_token feature to Future of reqwest::Response.

Required methods

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

Loading content...

Implementors

impl<T, E> TokenReaderFuture for T where
    T: Future<Output = Result<Response, E>>,
    E: Into<Error> + 'static, 
[src]

Loading content...