leetcoderustapi/resources/
mod.rs1pub mod beat_stats;
2pub mod cookie;
3pub mod data_profile;
4pub mod descr;
5pub mod fav_list;
6pub mod lang_stats;
7pub mod notification;
8pub mod problemfulldata;
9pub mod pub_data_profile;
10pub mod skill_stats;
11pub mod subm_list;
12pub mod subm_send;
13pub mod subm_show;
14pub mod test_send;
15
16use serde::Deserialize;
17
18#[derive(Deserialize, Debug)]
19pub struct Rate {
20 pub likes: u32,
21 pub dislikes: u32,
22}
23
24#[derive(Deserialize, Debug)]
25pub struct Description {
26 pub name: String,
27 pub content: String,
28}