Struct openid_client::types::RefreshTokenExtras
source · pub struct RefreshTokenExtras<'a> {
pub client_assertion_payload: Option<HashMap<String, Value>>,
pub exchange_body: Option<HashMap<String, String>>,
pub dpop: Option<&'a 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, String>>Additional body params to sent with the exchange request
dpop: Option<&'a Jwk>When provided the client will send a DPoP Proof JWT.
Auto Trait Implementations§
impl<'a> Freeze for RefreshTokenExtras<'a>
impl<'a> RefUnwindSafe for RefreshTokenExtras<'a>
impl<'a> Send for RefreshTokenExtras<'a>
impl<'a> Sync for RefreshTokenExtras<'a>
impl<'a> Unpin for RefreshTokenExtras<'a>
impl<'a> UnwindSafe for RefreshTokenExtras<'a>
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