-
Notifications
You must be signed in to change notification settings - Fork 248
Expand file tree
/
Copy pathmessage_types.rs
More file actions
84 lines (67 loc) · 1.57 KB
/
message_types.rs
File metadata and controls
84 lines (67 loc) · 1.57 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use serde::Deserialize;
use crate::ws::sub_structs::*;
#[derive(Deserialize, Clone, Debug)]
pub struct SubscriptionError {
pub data: String,
}
#[derive(Deserialize, Clone, Debug)]
pub struct Trades {
pub data: Vec<Trade>,
}
#[derive(Deserialize, Clone, Debug)]
pub struct L2Book {
pub data: L2BookData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct AllMids {
pub data: AllMidsData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct User {
pub data: UserData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct UserFills {
pub data: UserFillsData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct Candle {
pub data: CandleData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct OrderUpdates {
pub data: Vec<OrderUpdate>,
}
#[derive(Deserialize, Clone, Debug)]
pub struct UserFundings {
pub data: UserFundingsData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct UserNonFundingLedgerUpdates {
pub data: UserNonFundingLedgerUpdatesData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct Notification {
pub data: NotificationData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct WebData2 {
pub data: WebData2Data,
}
#[derive(Deserialize, Clone, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ActiveAssetCtx {
pub data: ActiveAssetCtxData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct ActiveSpotAssetCtx {
pub data: ActiveSpotAssetCtxData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct ActiveAssetData {
pub data: ActiveAssetDataData,
}
#[derive(Deserialize, Clone, Debug)]
pub struct Bbo {
pub data: BboData,
}