(
&mut self,
filename: &str,
add: &FileAcls,
remove: &FileAcls,
)
| 77 | } |
| 78 | |
| 79 | async fn update_acls( |
| 80 | &mut self, |
| 81 | filename: &str, |
| 82 | add: &FileAcls, |
| 83 | remove: &FileAcls, |
| 84 | ) -> io::Result<()> { |
| 85 | self.service.borrow_mut().patch_file_acls(&self.username, filename, add, remove).await |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | /// Factory for cloud drives. |