Make the error handler `FnMut`

This commit is contained in:
rhysd 2024-01-10 21:46:13 +09:00 committed by David Peter
parent cd81c7fa6b
commit 8e66bc8722
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ impl<'b> Controller<'b> {
&self,
inputs: Vec<Input>,
output_buffer: Option<&mut dyn std::fmt::Write>,
handle_error: impl Fn(&Error, &mut dyn Write),
mut handle_error: impl FnMut(&Error, &mut dyn Write),
) -> Result<bool> {
let mut output_type;