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
mod ack;
mod fill;
mod full;
mod result;
mod r#type;
pub use self::ack::Ack;
pub use self::fill::Fill;
pub use self::full::Full;
pub use self::r#type::Type;
pub use self::result::Result;
use serde_derive::Deserialize;
#[derive(Debug, Deserialize)]
#[serde(untagged)]
pub enum Response {
Full(Full),
Result(Result),
Ack(Ack),
}
impl Response {
pub fn client_order_id(&self) -> &str {
match self {
Response::Full(response) => response.client_order_id(),
Response::Result(response) => response.client_order_id(),
Response::Ack(response) => response.client_order_id(),
}
}
}