chore: scaffold Error implementation for FailedTo

This commit is contained in:
2026-03-16 08:14:15 +01:00
parent 62582ee055
commit c3d4e63d73

View File

@@ -54,3 +54,11 @@ impl From<sqlite::FailedTo> for FailedTo {
Self::SQLite(value) 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!()
}
}