| 22 | |
| 23 | #[derive(Debug, Clone)] |
| 24 | pub struct APILayerError { |
| 25 | pub status: u16, |
| 26 | pub message: String, |
| 27 | } |
| 28 | |
| 29 | impl std::fmt::Display for APILayerError { |
| 30 | fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected