(&self, path: &str)
| 584 | type Writer = MemoryWriter; |
| 585 | |
| 586 | fn is_writable(&self, path: &str) -> Result<bool, Self::Error> { |
| 587 | let non_writable = self.non_writable.borrow(); |
| 588 | Ok(!non_writable.iter().any(|p| p == path)) |
| 589 | } |
| 590 | |
| 591 | fn create_dir_all(&self, path: &str) -> Result<(), Self::Error> { |
| 592 | self.ensure_directories(path); |