rtrend 0.1.7

Unofficial API for interacting with Google Trend
Documentation
//! Represent a Google Trend Property

use strum_macros::{Display, EnumString, EnumVariantNames};
/// Create a new Property.
///
/// The available property are :
/// - `web`, `images`, `news`, `froogle` (Google Shopping), and `youtube`
///
/// Returns a `Property` instance.
///
/// # Example
/// ```
/// # use rtrend::Property;
/// let property = Property::Web;
/// ```

#[derive(Eq, PartialEq, Display, Debug, EnumString, Clone, EnumVariantNames)]
#[strum(serialize_all = "kebab_case")]
pub enum Property {
    #[strum(serialize = "")]
    Web,
    Images,
    News,
    Froogle,
    Youtube,
}