From f31b101ce1e921a026ba234b1f0a83b0392bc118 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 20 May 2026 08:33:49 +0900 Subject: fix(compile): fix all remaining compile errors Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe/src/io/io_interface.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'crates/shirabe/src/io/io_interface.rs') diff --git a/crates/shirabe/src/io/io_interface.rs b/crates/shirabe/src/io/io_interface.rs index d9092b1..f014594 100644 --- a/crates/shirabe/src/io/io_interface.rs +++ b/crates/shirabe/src/io/io_interface.rs @@ -82,22 +82,22 @@ pub trait IOInterface: LoggerInterface + std::fmt::Debug { } fn overwrite_error4(&self, message: &str, newline: bool, size: Option, verbosity: i64); - fn ask(&mut self, question: String, default: PhpMixed) -> PhpMixed; + fn ask(&self, question: String, default: PhpMixed) -> PhpMixed; - fn ask_confirmation(&mut self, question: String, default: bool) -> bool; + fn ask_confirmation(&self, question: String, default: bool) -> bool; fn ask_and_validate( - &mut self, + &self, question: String, validator: Box PhpMixed>, attempts: Option, default: PhpMixed, ) -> PhpMixed; - fn ask_and_hide_answer(&mut self, question: String) -> Option; + fn ask_and_hide_answer(&self, question: String) -> Option; fn select( - &mut self, + &self, question: String, choices: Vec, default: PhpMixed, -- cgit v1.3.1