pub struct SyncSecretsResult {
pub auth_file_present: bool,
pub auth_identity_present: bool,
pub synced: usize,
pub skipped: usize,
pub updated_files: Vec<PathBuf>,
}Fields§
§auth_file_present: bool§auth_identity_present: bool§synced: usize§skipped: usize§updated_files: Vec<PathBuf>Trait Implementations§
Source§impl Clone for SyncSecretsResult
impl Clone for SyncSecretsResult
Source§fn clone(&self) -> SyncSecretsResult
fn clone(&self) -> SyncSecretsResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SyncSecretsResult
impl Debug for SyncSecretsResult
Source§impl Default for SyncSecretsResult
impl Default for SyncSecretsResult
Source§fn default() -> SyncSecretsResult
fn default() -> SyncSecretsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for SyncSecretsResult
impl PartialEq for SyncSecretsResult
Source§fn eq(&self, other: &SyncSecretsResult) -> bool
fn eq(&self, other: &SyncSecretsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SyncSecretsResult
impl StructuralPartialEq for SyncSecretsResult
Auto Trait Implementations§
impl Freeze for SyncSecretsResult
impl RefUnwindSafe for SyncSecretsResult
impl Send for SyncSecretsResult
impl Sync for SyncSecretsResult
impl Unpin for SyncSecretsResult
impl UnsafeUnpin for SyncSecretsResult
impl UnwindSafe for SyncSecretsResult
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