summaryrefslogtreecommitdiff
path: root/rust/tests
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-10 23:09:10 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit5ebbd0620903403fb30a61157b16f33c89afb584 (patch)
treede3af288ba6cf0dfc704b72fb23ba199ef9c9cd2 /rust/tests
parentd23808b24efdda0e510bb70f8c6ece41e9b4347b (diff)
[Rust] Interaction handler API fixes
Diffstat (limited to 'rust/tests')
-rw-r--r--rust/tests/interaction.rs9
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!()
}