summaryrefslogtreecommitdiff
path: root/rust/tests
diff options
context:
space:
mode:
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!()
}