pub struct FirebaseAuthUser {
pub uid: String,
pub issued_at: OffsetDateTime,
pub expires_at: OffsetDateTime,
pub auth_time: OffsetDateTime,
}Expand description
Represents a verified Firebase user
Fields§
§uid: StringUser’s unique ID (from sub claim)
issued_at: OffsetDateTimeTime when the token was issued
expires_at: OffsetDateTimeTime when the token expires
auth_time: OffsetDateTimeTime when the user was authenticated
Trait Implementations§
Source§impl Clone for FirebaseAuthUser
impl Clone for FirebaseAuthUser
Source§fn clone(&self) -> FirebaseAuthUser
fn clone(&self) -> FirebaseAuthUser
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FirebaseAuthUser
impl RefUnwindSafe for FirebaseAuthUser
impl Send for FirebaseAuthUser
impl Sync for FirebaseAuthUser
impl Unpin for FirebaseAuthUser
impl UnwindSafe for FirebaseAuthUser
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