oauth2-client 0.2.0

OAuth 2.0 Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::re_exports::Endpoint;

use super::{EndpointParseResponseError, EndpointRenderRequestError, UserInfo};

//
pub type UserInfoEndpointBox = Box<
    dyn Endpoint<
            RenderRequestError = EndpointRenderRequestError,
            ParseResponseOutput = UserInfo,
            ParseResponseError = EndpointParseResponseError,
        > + Send
        + Sync,
>;