Struct openid_client::types::GrantExtras
source · pub struct GrantExtras {
pub client_assertion_payload: Option<HashMap<String, Value>>,
pub endpoint_auth_method: Option<String>,
pub dpop: Option<Jwk>,
}Expand description
GrantExtras
Parameters for customizing Grant request
Fields§
§client_assertion_payload: Option<HashMap<String, Value>>Additional claims to be added in the client assertion payload
endpoint_auth_method: Option<String>Specific endpoint auth method to use
dpop: Option<Jwk>Private key belonging to the client for Dynamic Proof of Posession
Trait Implementations§
source§impl Clone for GrantExtras
impl Clone for GrantExtras
source§fn clone(&self) -> GrantExtras
fn clone(&self) -> GrantExtras
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GrantExtras
impl Debug for GrantExtras
source§impl Default for GrantExtras
impl Default for GrantExtras
source§fn default() -> GrantExtras
fn default() -> GrantExtras
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for GrantExtras
impl Send for GrantExtras
impl Sync for GrantExtras
impl Unpin for GrantExtras
impl UnwindSafe for GrantExtras
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