pub struct AuthSyncResult {
pub auth_file: String,
pub synced: usize,
pub skipped: usize,
pub failed: usize,
pub updated_files: Vec<String>,
}Fields§
§auth_file: String§synced: usize§skipped: usize§failed: usize§updated_files: Vec<String>Trait Implementations§
Source§impl Clone for AuthSyncResult
impl Clone for AuthSyncResult
Source§fn clone(&self) -> AuthSyncResult
fn clone(&self) -> AuthSyncResult
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 AuthSyncResult
impl Debug for AuthSyncResult
Auto Trait Implementations§
impl Freeze for AuthSyncResult
impl RefUnwindSafe for AuthSyncResult
impl Send for AuthSyncResult
impl Sync for AuthSyncResult
impl Unpin for AuthSyncResult
impl UnsafeUnpin for AuthSyncResult
impl UnwindSafe for AuthSyncResult
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