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

Interface Command

rust/src/command.rs:48–51  ·  view source on GitHub ↗

The trait required for generic commands. See [register_command] for example usage.

Source from the content-addressed store, hash-verified

46
47/// The trait required for generic commands. See [register_command] for example usage.
48pub trait Command: 'static + Sync {
49 fn action(&self, view: &BinaryView);
50 fn valid(&self, view: &BinaryView) -> bool;
51}
52
53impl<T> Command for T
54where

Callers

nothing calls this directly

Implementers 11

command.rsrust/src/command.rs
lib.rsview/minidump/src/lib.rs
lib.rsplugins/dwarf/dwarfdump/src/lib.rs
lib.rsplugins/dwarf/dwarf_export/src/lib.rs
lib.rsplugins/svd/src/lib.rs
plugin.rsplugins/warp/src/plugin.rs
types.rsplugins/warp/src/plugin/types.rs
create.rsplugins/warp/src/plugin/create.rs
workflow.rsplugins/warp/src/plugin/workflow.rs
find.rsplugins/warp/src/plugin/find.rs
load.rsplugins/warp/src/plugin/load.rs

Calls

no outgoing calls

Tested by

no test coverage detected