giphy-api-lite 0.1.2

GIPHY API
Documentation
1
2
3
4
5
6
7
8
9
10
//! https://developers.giphy.com/docs/api/schema/#meta-object

use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct Meta {
    pub msg: String,
    pub status: u32,
    pub response_id: String,
}