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
use std::str::Utf8Error;
use http::status::InvalidStatusCode as InvalidStatusCodeError;
use http::uri::InvalidUri as InvalidUriError;
use serde_json::Error as JsonError;
use serde_qs::Error as QueryError;
error_chain!{
foreign_links {
InvalidStatusCode(InvalidStatusCodeError);
InvalidUri(InvalidUriError);
Json(JsonError);
Query(QueryError);
Utf8(Utf8Error);
}
errors {
InvalidMemberName(name: String) {
description("TODO")
display("TODO")
}
MissingField(name: String) {
description("A struct was built without a required field.")
display(r#"missing required field "{}""#, name)
}
UnsupportedVersion(version: String) {
description("The specified version of is not \
supported by this implementation.")
display(r#"Version "{}" is not yet supported by \
this implementation."#, version)
}
}
}
impl Error {
pub fn missing_field(name: &str) -> Self {
Self::from(ErrorKind::MissingField(name.to_owned()))
}
pub fn unsupported_version(version: &str) -> Self {
Self::from(ErrorKind::UnsupportedVersion(version.to_owned()))
}
}