pub struct DPoPAuth {
pub dpop_private_key_data: KeyData,
pub oauth_access_token: String,
}Expand description
DPoP authentication credentials for authenticated HTTP requests.
Contains the private key for DPoP proof generation and OAuth access token for Authorization header.
Fields§
§dpop_private_key_data: KeyDataPrivate key data for generating DPoP proof tokens
oauth_access_token: StringOAuth access token for the Authorization header
Auto Trait Implementations§
impl Freeze for DPoPAuth
impl RefUnwindSafe for DPoPAuth
impl Send for DPoPAuth
impl Sync for DPoPAuth
impl Unpin for DPoPAuth
impl UnwindSafe for DPoPAuth
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