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
|
// rustfmt-struct_field_align_threshold: 50
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "PascalCase")]
struct AuditLog1 {
creation_time: String,
id: String,
operation: String,
organization_id: String,
record_type: u32,
result_status: Option<String>,
#[serde(rename = "ClientIP")]
client_ip: Option<IpAddr>,
object_id: String,
actor: Option<Vec<IDType>>,
actor_context_id: Option<String>,
actor_ip_address: Option<IpAddr>,
azure_active_directory_event_type: Option<u8>,
#[serde(rename = "very")]
aaaaa: String,
#[serde(rename = "cool")]
bb: i32,
}
#[derive(Serialize, Deserialize, Debug)]
#[serde(rename_all = "PascalCase")]
struct AuditLog2 {
creation_time: String,
id: String,
operation: String,
organization_id: String,
record_type: u32,
result_status: Option<String>,
client_ip: Option<IpAddr>,
object_id: String,
actor: Option<Vec<IDType>>,
actor_context_id: Option<String>,
actor_ip_address: Option<IpAddr>,
azure_active_directory_event_type: Option<u8>,
}
|