pub struct EncryptedTokenSet {
pub access_token: Option<String>,
pub refresh_token: Option<String>,
pub id_token: Option<String>,
}Expand description
A set of OAuth tokens (access, refresh, id) after conditional encryption.
Fields§
§access_token: Option<String>§refresh_token: Option<String>§id_token: Option<String>Auto Trait Implementations§
impl Freeze for EncryptedTokenSet
impl RefUnwindSafe for EncryptedTokenSet
impl Send for EncryptedTokenSet
impl Sync for EncryptedTokenSet
impl Unpin for EncryptedTokenSet
impl UnsafeUnpin for EncryptedTokenSet
impl UnwindSafe for EncryptedTokenSet
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