diff options
| author | Mason Reed <mason@vector35.com> | 2025-05-10 23:09:10 -0400 |
|---|---|---|
| committer | Mason Reed <35282038+emesare@users.noreply.github.com> | 2025-05-12 17:45:24 -0400 |
| commit | 5ebbd0620903403fb30a61157b16f33c89afb584 (patch) | |
| tree | de3af288ba6cf0dfc704b72fb23ba199ef9c9cd2 /rust/tests | |
| parent | d23808b24efdda0e510bb70f8c6ece41e9b4347b (diff) | |
[Rust] Interaction handler API fixes
Diffstat (limited to 'rust/tests')
| -rw-r--r-- | rust/tests/interaction.rs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/rust/tests/interaction.rs b/rust/tests/interaction.rs index eea906ec..5e9606b0 100644 --- a/rust/tests/interaction.rs +++ b/rust/tests/interaction.rs @@ -36,11 +36,16 @@ impl InteractionHandler for MyInteractionHandler { todo!() } - fn show_plain_text_report(&mut self, _view: &BinaryView, _title: &str, _contents: &str) { + fn show_plain_text_report( + &mut self, + _view: Option<&BinaryView>, + _title: &str, + _contents: &str, + ) { todo!() } - fn show_graph_report(&mut self, _view: &BinaryView, _title: &str, _graph: &FlowGraph) { + fn show_graph_report(&mut self, _view: Option<&BinaryView>, _title: &str, _graph: &FlowGraph) { todo!() } |
