Associate an inode update with a graph_op. When the change is applied locally, this update will be used to maintain the tree/inode database tables. # Arguments `hunk_index` - The index of the graph_op (from `add_hunk`) `update` - The inode update to associate # Example ```rust use atomic_core::record::{RecordBuilder, InodeUpdate}; use atomic_core::types::{ChangePosition, Inode}; let mut buil
(&mut self, hunk_index: usize, update: InodeUpdate)
| 327 | /// // )); |
| 328 | /// ``` |
| 329 | pub fn add_inode_update(&mut self, hunk_index: usize, update: InodeUpdate) { |
| 330 | self.updatables.insert(hunk_index, update); |
| 331 | } |
| 332 | |
| 333 | /// Mark an inode as recorded at a specific position. |
| 334 | /// |