| 52 | |
| 53 | #[derive(Debug)] |
| 54 | pub enum Error { |
| 55 | Deserialization(DeserializationError), |
| 56 | InboundMessage(InboundMessageError), |
| 57 | Process(ProcessError), |
| 58 | TcpReceive(TcpReceiveError), |
| 59 | TcpSend(TcpSendError), |
| 60 | } |
| 61 | |
| 62 | impl From<str::Utf8Error> for Error { |
| 63 | fn from(_error: str::Utf8Error) -> Self { |
no outgoing calls
no test coverage detected