pub struct ProfileHealth {
pub name: String,
pub provider: String,
pub health: TokenHealth,
pub has_refresh_token: bool,
pub expires_at_epoch_secs: Option<u64>,
}Expand description
Per-profile health report returned by token_health.
Fields§
§name: String§provider: String§health: TokenHealth§has_refresh_token: bool§expires_at_epoch_secs: Option<u64>Trait Implementations§
Source§impl Clone for ProfileHealth
impl Clone for ProfileHealth
Source§fn clone(&self) -> ProfileHealth
fn clone(&self) -> ProfileHealth
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 moreAuto Trait Implementations§
impl Freeze for ProfileHealth
impl RefUnwindSafe for ProfileHealth
impl Send for ProfileHealth
impl Sync for ProfileHealth
impl Unpin for ProfileHealth
impl UnsafeUnpin for ProfileHealth
impl UnwindSafe for ProfileHealth
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