pub enum InodeUpdate {
Add {
pos: ChangePosition,
inode: Inode,
},
Deleted {
inode: Inode,
},
}Expand description
An account of the files that have been added, moved or deleted, as returned by record, and used by apply (when applying a change created locally) to update the trees and inodes databases.
Variants§
Trait Implementations§
Source§impl Debug for InodeUpdate
impl Debug for InodeUpdate
impl Eq for InodeUpdate
Source§impl Hash for InodeUpdate
impl Hash for InodeUpdate
Source§impl PartialEq for InodeUpdate
impl PartialEq for InodeUpdate
Source§fn eq(&self, other: &InodeUpdate) -> bool
fn eq(&self, other: &InodeUpdate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InodeUpdate
Auto Trait Implementations§
impl Freeze for InodeUpdate
impl RefUnwindSafe for InodeUpdate
impl Send for InodeUpdate
impl Sync for InodeUpdate
impl Unpin for InodeUpdate
impl UnsafeUnpin for InodeUpdate
impl UnwindSafe for InodeUpdate
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.