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
use serde::{Deserialize, Serialize};

use super::{EndpointInfo, Input, KrakenInput, MethodType, Output};

/// Request builder for the Get Server Time endpoint
pub struct KIServerTime();

impl KIServerTime {
    /// Constructor returning a [KrakenInput] builder for the get server time endpoint.
    /// There are no inputs to this endpoint so finish() is called for you
    pub fn build() -> KrakenInput {
        let time = KIServerTime();
        time.finish()
    }
}

impl Input for KIServerTime {
    fn finish(self) -> KrakenInput {
        KrakenInput {
            info: EndpointInfo {
                methodtype: MethodType::Public,
                endpoint: String::from("Time"),
            },
            params: None,
        }
    }

    fn finish_clone(self) -> (KrakenInput, Self) {
        (
            KrakenInput {
                info: EndpointInfo {
                    methodtype: MethodType::Public,
                    endpoint: String::from("Time"),
                },
                params: None,
            },
            self,
        )
    }
}

/// Response from the Get Server Time endpoint
#[derive(Deserialize, Serialize, Debug)]
pub struct KOServerTime {
    /// as unix timestamp
    pub unixtime: u64,
    /// as RFC 1123 time format
    pub rfc1123: String,
}

impl Output for KOServerTime {}