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

Method pull_groups_with_progress

rust/src/collaboration/remote.rs:540–552  ·  view source on GitHub ↗

Pulls the list of groups from the Remote. This function is only available to accounts with admin status on the Remote. # Arguments `progress` - Function to call for progress updates

(
        &self,
        mut progress: F,
    )

Source from the content-addressed store, hash-verified

538 ///
539 /// * `progress` - Function to call for progress updates
540 pub fn pull_groups_with_progress<F: ProgressCallback>(
541 &self,
542 mut progress: F,
543 ) -> Result<(), ()> {
544 let success = unsafe {
545 BNRemotePullGroups(
546 self.handle.as_ptr(),
547 Some(F::cb_progress_callback),
548 &mut progress as *mut F as *mut c_void,
549 )
550 };
551 success.then_some(()).ok_or(())
552 }
553
554 /// Creates a new group on the remote (and pull it).
555 /// This function is only available to accounts with admin status on the Remote.

Callers 1

pull_groupsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected