(&mut self)
| 861 | } |
| 862 | |
| 863 | fn write_input_to_target(&mut self) -> anyhow::Result<()> { |
| 864 | let source = self |
| 865 | .target |
| 866 | .get_mmio_handler(&mut self.vm) |
| 867 | .ok_or_else(|| anyhow::format_err!("target does not support MultiStream input"))?; |
| 868 | source.clone_from(&self.state.input); |
| 869 | Ok(()) |
| 870 | } |
| 871 | |
| 872 | fn auto_trim_input(&mut self) -> anyhow::Result<()> { |
| 873 | let source = self |
no test coverage detected