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
//! MINI-RPC Request Method.

use std::fmt;

/// Request method.
#[derive(Debug, PartialEq, Deserialize, Serialize)]
#[serde(untagged)]
pub enum Method {
    /// String method.
    String(String),
}

impl fmt::Display for Method {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Method::String(string) => write!(f, "{}", string),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use serde_json;

    #[test]
    fn method_deserialization() {
        let input = r#""text_method""#;
        let expected = Method::String("text_method".to_owned());

        let result: Method = serde_json::from_str(input).unwrap();
        assert_eq!(result, expected);
    }

    #[test]
    fn method_serialization() {
        let input = Method::String("text_method".to_owned());
        let expected = r#""text_method""#;

        let result = serde_json::to_string(&input).unwrap();
        assert_eq!(result, expected);
    }
}