(&mut self, filename: &str, content: &[u8])
| 70 | } |
| 71 | |
| 72 | async fn put(&mut self, filename: &str, content: &[u8]) -> io::Result<()> { |
| 73 | self.service |
| 74 | .borrow_mut() |
| 75 | .patch_file_content(&self.username, filename, content.to_vec()) |
| 76 | .await |
| 77 | } |
| 78 | |
| 79 | async fn update_acls( |
| 80 | &mut self, |