wolt 0.1.0

A reqwest/tokio based api wrapper for Wolt
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct PageSectionItemVenueRating {
    pub rating: i32,
    pub score: f64,
}

#[derive(Deserialize, Debug)]
pub struct PageSectionItemVenue {
    pub id: String,
    pub name: String,
    pub delivery_price: String,
    pub rating: Option<PageSectionItemVenueRating>,
}