Struct openid_client::types::AuthenticationPostParams
source · pub struct AuthenticationPostParams {
pub client_assertion_payload: Option<HashMap<String, Value>>,
pub endpoint_auth_method: Option<String>,
pub dpop: Option<Jwk>,
}Expand description
AuthenticationPostParams
Parameters for customizing Authentication Post 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 AuthenticationPostParams
impl Clone for AuthenticationPostParams
source§fn clone(&self) -> AuthenticationPostParams
fn clone(&self) -> AuthenticationPostParams
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 AuthenticationPostParams
impl Debug for AuthenticationPostParams
source§impl Default for AuthenticationPostParams
impl Default for AuthenticationPostParams
source§fn default() -> AuthenticationPostParams
fn default() -> AuthenticationPostParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationPostParams
impl Send for AuthenticationPostParams
impl Sync for AuthenticationPostParams
impl Unpin for AuthenticationPostParams
impl UnwindSafe for AuthenticationPostParams
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