make ResponseParserError self-contained, impl thiserror

This commit is contained in:
2025-12-08 05:31:13 +09:00
parent e9cf44f006
commit 6cfd6eba2c
49 changed files with 212 additions and 173 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ impl CommandResponse<'_> for PlChangesResponse {
todo!()
}
fn parse(parts: ResponseAttributes<'_>) -> Result<Self, ResponseParserError<'_>> {
fn parse(parts: ResponseAttributes<'_>) -> Result<Self, ResponseParserError> {
unimplemented!()
}
}