pub struct AuthProfileSummary {
pub name: String,
pub provider: String,
pub active: bool,
pub created_at_epoch_secs: u64,
pub updated_at_epoch_secs: u64,
pub has_refresh_token: bool,
pub token_expires_at_epoch_secs: Option<u64>,
}Fields§
§name: String§provider: String§active: bool§created_at_epoch_secs: u64§updated_at_epoch_secs: u64§has_refresh_token: bool§token_expires_at_epoch_secs: Option<u64>Trait Implementations§
Source§impl Clone for AuthProfileSummary
impl Clone for AuthProfileSummary
Source§fn clone(&self) -> AuthProfileSummary
fn clone(&self) -> AuthProfileSummary
Returns a duplicate 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 moreSource§impl Debug for AuthProfileSummary
impl Debug for AuthProfileSummary
Auto Trait Implementations§
impl Freeze for AuthProfileSummary
impl RefUnwindSafe for AuthProfileSummary
impl Send for AuthProfileSummary
impl Sync for AuthProfileSummary
impl Unpin for AuthProfileSummary
impl UnsafeUnpin for AuthProfileSummary
impl UnwindSafe for AuthProfileSummary
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