openid-client 1.0.0-alpha.7

OpenID client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// # JweType
/// Represents the JweType
pub enum JweType {
    /// JARM (JWT Secured Authorization Response Mode) response
    Jarm,
    /// UserInfo response
    Userinfo,
    /// ID Token
    IdToken,
    /// Introspection response
    Introspection,
    /// Request object
    RequestObject,
    /// Other unclassified JWE type
    Other,
}