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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use std::fmt;
use std::error::Error as StdError;
use std::borrow::Cow;

pub use stream::error::RequestError;


/// The error that is sent if something goes wrong while responding
/// to a request.
pub trait ApiError: StdError {
	fn from_request_error(e: RequestError) -> Self;

	fn from_message_error(e: MessageError) -> Self;
}


#[derive(Debug)]
#[non_exhaustive]
pub enum Error {
	MessageError(MessageError)
}

impl From<MessageError> for Error {
	fn from(e: MessageError) -> Self {
		Self::MessageError(e)
	}
}

impl fmt::Display for Error {
	fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
		fmt::Debug::fmt(self, fmt)
	}
}

impl StdError for Error {}

#[derive(Debug)]
#[non_exhaustive]
pub enum MessageError {
	#[cfg(feature = "json")]
	Json(serde_json::Error),
	// Protobuf
	#[cfg(feature = "protobuf")]
	EncodeError(fire_protobuf::encode::EncodeError),
	#[cfg(feature = "protobuf")]
	DecodeError(fire_protobuf::decode::DecodeError),
	Other(Cow<'static, str>)
}

impl fmt::Display for MessageError {
	fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
		fmt::Debug::fmt(self, fmt)
	}
}

impl StdError for MessageError {}