oauth2_core/types/
mod.rs

1pub mod access_token_type;
2pub mod client_password;
3pub mod code_challenge_method;
4pub mod code_verifier;
5pub mod redirect_uri;
6pub mod scope;
7
8pub use access_token_type::AccessTokenType;
9pub use client_password::ClientPassword;
10pub use code_challenge_method::CodeChallengeMethod;
11pub use code_verifier::CodeVerifier;
12pub use redirect_uri::RedirectUri;
13pub use scope::{Scope, ScopeFromStrError, ScopeParameter};
14
15//
16//
17//
18pub type ClientId = String;
19pub type ClientSecret = String;
20pub type State = String;
21pub type Code = String;
22
23pub type CodeChallenge = String;
24
25//
26//
27//
28pub type IdToken = String;
29pub type Nonce = String;