1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
use thiserror::Error; #[derive(Error, Debug, Clone)] /// The public Error type for [crate::MessageTransport] values. /// These errors signify a held error or an error transforming /// a [crate::MessageTransport] into another type. pub enum TransportError { /// Error to proxy rmp_serde encoding errors. #[error("Failed to serialize payload: {0}")] SerializationError(String), /// Error to proxy rmp_serde decoding errors. #[error("Failed to deserialize payload: {0}")] DeserializationError(String), /// Error used when a payload is invalid or invalidated. #[error("Invalid payload")] Invalid, /// Error from the payload. #[error("{0}")] Error(String), /// Exception from the payload. #[error("{0}")] Exception(String), /// General errors. #[error("General error : {0}")] Other(String), }