| 5 | |
| 6 | #[derive(Debug, Serialize)] |
| 7 | pub struct ApiError { |
| 8 | pub error: String, |
| 9 | #[serde(skip_serializing_if = "Option::is_none")] |
| 10 | pub detail: Option<String>, |
| 11 | } |
| 12 | |
| 13 | #[derive(Debug)] |
| 14 | pub struct ApiFault { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…