From c3d4e63d737aab82a5e335cfa4022581c0be3970 Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Mon, 16 Mar 2026 08:14:15 +0100 Subject: [PATCH] chore: scaffold Error implementation for FailedTo --- 01.workspace/heave/src/str/failed_to.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/01.workspace/heave/src/str/failed_to.rs b/01.workspace/heave/src/str/failed_to.rs index 34f995a..f13c87a 100644 --- a/01.workspace/heave/src/str/failed_to.rs +++ b/01.workspace/heave/src/str/failed_to.rs @@ -54,3 +54,11 @@ impl From for FailedTo { Self::SQLite(value) } } + +impl std::error::Error for FailedTo {} + +impl std::fmt::Display for FailedTo { + fn fmt(&self, f: &mut std::fmt::Formatter) -> std::result::Result<(), std::fmt::Error> { + todo!() + } +}