Struct openid_client::types::RefreshTokenExtras
source · pub struct RefreshTokenExtras {
pub client_assertion_payload: Option<HashMap<String, Value>>,
pub exchange_body: Option<HashMap<String, Value>>,
pub dpop: Option<Jwk>,
}Expand description
RefreshParams
Parameters for the Client’s refresh_async request
Fields§
§client_assertion_payload: Option<HashMap<String, Value>>Additional claims to be added in the client assertion payload
exchange_body: Option<HashMap<String, Value>>Additional body params to sent with the exchange request
dpop: Option<Jwk>When provided the client will send a DPoP Proof JWT.
Auto Trait Implementations§
impl RefUnwindSafe for RefreshTokenExtras
impl Send for RefreshTokenExtras
impl Sync for RefreshTokenExtras
impl Unpin for RefreshTokenExtras
impl UnwindSafe for RefreshTokenExtras
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