oauth2_client/extensions/user_info_endpoint.rs
1use crate::re_exports::Endpoint;
2
3use super::{EndpointParseResponseError, EndpointRenderRequestError, UserInfo};
4
5//
6pub type UserInfoEndpointBox = Box<
7 dyn Endpoint<
8 RenderRequestError = EndpointRenderRequestError,
9 ParseResponseOutput = UserInfo,
10 ParseResponseError = EndpointParseResponseError,
11 > + Send
12 + Sync,
13>;