pub struct AuthUser {
pub user_id: String,
pub name: String,
pub access_token: String,
pub refresh_token: String,
pub expires_in: i64,
pub extra: HashMap<String, Value>,
}Fields§
§user_id: String§name: String§access_token: String§refresh_token: String§expires_in: i64§extra: HashMap<String, Value>Auto Trait Implementations§
impl Freeze for AuthUser
impl RefUnwindSafe for AuthUser
impl Send for AuthUser
impl Sync for AuthUser
impl Unpin for AuthUser
impl UnwindSafe for AuthUser
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