pub enum InodeUpdate {
Add {
line: LineId,
meta: FileMetadata,
inode: Inode,
},
Moved {
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 patch created locally) to update the trees and inodes databases.
Variants§
Trait Implementations§
Source§impl Debug for InodeUpdate
impl Debug for InodeUpdate
Source§impl Hash for InodeUpdate
impl Hash for InodeUpdate
Source§impl PartialEq for InodeUpdate
impl PartialEq for InodeUpdate
impl Eq for InodeUpdate
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 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