Deletes a project from the remote.
(&self, project: &RemoteProject)
| 433 | |
| 434 | /// Deletes a project from the remote. |
| 435 | pub fn delete_project(&self, project: &RemoteProject) -> Result<(), ()> { |
| 436 | let success = |
| 437 | unsafe { BNRemoteDeleteProject(self.handle.as_ptr(), project.handle.as_ptr()) }; |
| 438 | success.then_some(()).ok_or(()) |
| 439 | } |
| 440 | |
| 441 | /// Gets the list of groups in this project. |
| 442 | /// |
no outgoing calls