oauth2-client 0.2.0

OAuth 2.0 Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde_json::{Map, Value};

//
#[derive(Debug, Clone)]
pub struct UserInfo {
    pub uid: String,
    pub name: Option<String>,
    pub email: Option<String>,
    //
    pub raw: Map<String, Value>,
}