MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / delete_project

Method delete_project

rust/src/collaboration/remote.rs:435–439  ·  view source on GitHub ↗

Deletes a project from the remote.

(&self, project: &RemoteProject)

Source from the content-addressed store, hash-verified

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 ///

Callers 1

temp_project_scopeFunction · 0.45

Calls

no outgoing calls

Tested by 1

temp_project_scopeFunction · 0.36