pub struct MaybeConflict {
pub identity: bool,
pub account: bool,
pub device: bool,
pub files: bool,
pub folders: IndexMap<VaultId, bool>,
}Expand description
Information about possible conflicts.
Fields§
§identity: boolWhether the identity folder might be conflicted.
account: boolWhether the account log might be conflicted.
device: boolWhether the device log might be conflicted.
files: boolAvailable on crate feature
files only.Whether the files log might be conflicted.
folders: IndexMap<VaultId, bool>Account folders that might be conflicted.
Implementations§
Source§impl MaybeConflict
impl MaybeConflict
Sourcepub fn has_conflicts(&self) -> bool
pub fn has_conflicts(&self) -> bool
Check for any conflicts.
Trait Implementations§
Source§impl Debug for MaybeConflict
impl Debug for MaybeConflict
Source§impl Default for MaybeConflict
impl Default for MaybeConflict
Source§fn default() -> MaybeConflict
fn default() -> MaybeConflict
Returns the “default value” for a type. Read more
Source§impl PartialEq for MaybeConflict
impl PartialEq for MaybeConflict
impl Eq for MaybeConflict
impl StructuralPartialEq for MaybeConflict
Auto Trait Implementations§
impl Freeze for MaybeConflict
impl RefUnwindSafe for MaybeConflict
impl Send for MaybeConflict
impl Sync for MaybeConflict
impl Unpin for MaybeConflict
impl UnwindSafe for MaybeConflict
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.