Struct openid_client::types::ClaimsParameterMember
source · pub struct ClaimsParameterMember {
pub essential: Option<bool>,
pub value: Option<String>,
pub values: Option<Vec<String>>,
pub other: Option<HashMap<String, Value>>,
}Expand description
ClaimsParameterMember
Customizing the claims from claims of AuthorizationParameters
Fields§
§essential: Option<bool>Marks as essential or not
value: Option<String>Claim that should be mapped to the specified key
values: Option<Vec<String>>Claims that should be mapped to the specified key
other: Option<HashMap<String, Value>>Other fields that should be sent
Trait Implementations§
source§impl Debug for ClaimsParameterMember
impl Debug for ClaimsParameterMember
source§impl Default for ClaimsParameterMember
impl Default for ClaimsParameterMember
source§fn default() -> ClaimsParameterMember
fn default() -> ClaimsParameterMember
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ClaimsParameterMember
impl Send for ClaimsParameterMember
impl Sync for ClaimsParameterMember
impl Unpin for ClaimsParameterMember
impl UnwindSafe for ClaimsParameterMember
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