gtrend-rs 0.2.0

Unofficial client for interacting with Google Trend API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Represent a Google Trend Property

use serde::Serialize;

/// Represent a Google Trend Property
#[derive(Debug, Serialize, Clone, Copy)]
#[serde(rename_all = "kebab-case")]
pub enum Property {
    #[serde(rename = "")]
    Web,
    Images,
    News,
    Froogle,
    Youtube,
}