tenor 0.1.1

Rust api for Tenor.com
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

use crate::Limit;

#[derive(Debug, Default)]
pub struct Parameters {
    pub client_key: String,
    pub limit: Limit,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct Response {
    pub locale: String,
    pub results: Vec<String>,
}