(&self, serializer: S)
| 13 | |
| 14 | impl serde::Serialize for CommandError { |
| 15 | fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> |
| 16 | where |
| 17 | S: Serializer, |
| 18 | { |
| 19 | serializer.serialize_str(&self.to_string()) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | impl From<anyhow::Error> for CommandError { |
no outgoing calls
no test coverage detected