egg-mode 0.16.1

Library to interact with the Twitter API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::Deserialize;

use super::PlaceType;

#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct RawTrendLocation {
    pub country: String,
    pub country_code: Option<String>,
    pub name: String,
    pub parentid: u32,
    pub place_type: PlaceType,
    pub url: String,
    pub woeid: u32,
}