From 44e82cc7d937d49593c6f436d03a38f3371b6873 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 6 Jun 2026 15:36:28 +0900 Subject: refactor(operation,link): port __toString to Display Move __toString ports to std::fmt::Display: convert Link's inherent to_string() and make OperationInterface require Display instead of a to_string() method, with each operation implementing Display. Also fix the operation __toString output to use show(false), matching SolverOperation::__toString() (was show(true)). Co-Authored-By: Claude Opus 4.8 --- .../shirabe/src/dependency_resolver/operation/operation_interface.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'crates/shirabe/src/dependency_resolver/operation/operation_interface.rs') diff --git a/crates/shirabe/src/dependency_resolver/operation/operation_interface.rs b/crates/shirabe/src/dependency_resolver/operation/operation_interface.rs index 51b150c..30ed8eb 100644 --- a/crates/shirabe/src/dependency_resolver/operation/operation_interface.rs +++ b/crates/shirabe/src/dependency_resolver/operation/operation_interface.rs @@ -4,15 +4,13 @@ use crate::dependency_resolver::operation::InstallOperation; use crate::dependency_resolver::operation::UninstallOperation; use crate::dependency_resolver::operation::UpdateOperation; -pub trait OperationInterface: std::fmt::Debug { +pub trait OperationInterface: std::fmt::Display + std::fmt::Debug { fn as_any(&self) -> &dyn std::any::Any; fn get_operation_type(&self) -> String; fn show(&self, lock: bool) -> String; - fn to_string(&self) -> String; - fn as_install_operation(&self) -> Option<&InstallOperation> { None } -- cgit v1.3.1