pub struct ClaimParam {
pub id_token: Option<HashMap<String, ClaimParamValue>>,
pub userinfo: Option<HashMap<String, ClaimParamValue>>,
}
Expand description
§ClaimParam
The value of claims
of AuthorizationParameters
Fields§
§id_token: Option<HashMap<String, ClaimParamValue>>
Claims structure of id_token
userinfo: Option<HashMap<String, ClaimParamValue>>
Claims structure of userinfo
that will be returned
Trait Implementations§
Source§impl Debug for ClaimParam
impl Debug for ClaimParam
Source§impl Default for ClaimParam
impl Default for ClaimParam
Source§fn default() -> ClaimParam
fn default() -> ClaimParam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClaimParam
impl<'de> Deserialize<'de> for ClaimParam
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClaimParam
impl RefUnwindSafe for ClaimParam
impl Send for ClaimParam
impl Sync for ClaimParam
impl Unpin for ClaimParam
impl UnwindSafe for ClaimParam
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more