(&mut self)
| 612 | } |
| 613 | |
| 614 | fn alloc_inode(&mut self) -> Result<Inode, Self::Error> { |
| 615 | let inode = Inode::new(self.next_inode); |
| 616 | self.next_inode += 1; |
| 617 | Ok(inode) |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | // Helper Functions |
no outgoing calls
no test coverage detected