| 304 | /// - Update folder structure |
| 305 | #[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)] |
| 306 | pub struct EdgeUpdate<H> { |
| 307 | /// The edge modifications to apply. |
| 308 | pub edges: Vec<NewEdge<H>>, |
| 309 | |
| 310 | /// The file (inode) these edges belong to. |
| 311 | pub inode: Position<H>, |
| 312 | } |
| 313 | |
| 314 | impl<H> EdgeUpdate<H> { |
| 315 | /// Create a new empty EdgeUpdate for a given inode. |
no outgoing calls