ua_job_parser/lib.rs
1#[derive(Debug)]
2pub struct Website {
3 pub name: String,
4 pub link: String,
5 pub query: String,
6 pub total: u16,
7 pub vacancies: Vec<Vacancy>,
8}
9
10#[derive(Debug)]
11pub struct Vacancy {
12 pub position: String,
13 pub company: String,
14 pub description: String,
15 pub date: String,
16 pub location: String,
17 pub salary: String,
18 pub link: String,
19}
20
21pub mod dou;
22pub mod robota;