pub struct AuthAutoRefreshResult {
pub refreshed: i64,
pub skipped: i64,
pub failed: i64,
pub min_age_days: i64,
pub targets: Vec<AuthAutoRefreshTargetResult>,
}Fields§
§refreshed: i64§skipped: i64§failed: i64§min_age_days: i64§targets: Vec<AuthAutoRefreshTargetResult>Trait Implementations§
Source§impl Clone for AuthAutoRefreshResult
impl Clone for AuthAutoRefreshResult
Source§fn clone(&self) -> AuthAutoRefreshResult
fn clone(&self) -> AuthAutoRefreshResult
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 AuthAutoRefreshResult
impl Debug for AuthAutoRefreshResult
Auto Trait Implementations§
impl Freeze for AuthAutoRefreshResult
impl RefUnwindSafe for AuthAutoRefreshResult
impl Send for AuthAutoRefreshResult
impl Sync for AuthAutoRefreshResult
impl Unpin for AuthAutoRefreshResult
impl UnsafeUnpin for AuthAutoRefreshResult
impl UnwindSafe for AuthAutoRefreshResult
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