gtrend-rs 2.0.0

Unofficial client for interacting with Google Trend API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::Deserialize;

pub mod geo_map;
pub mod related_queries;
pub mod related_topics;
pub mod timeseries;

/// Text object in Google Trends structures
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Text {
    pub text: String,
}