| 42 | )] |
| 43 | #[cfg_attr(any(test, feature = "proptest"), derive(Arbitrary))] |
| 44 | pub struct DecodeError { |
| 45 | pub kind: DecodeErrorKind, |
| 46 | pub raw: Vec<u8>, |
| 47 | } |
| 48 | |
| 49 | impl RustType<ProtoDecodeError> for DecodeError { |
| 50 | fn into_proto(&self) -> ProtoDecodeError { |
no outgoing calls
no test coverage detected