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/#pagination-object

use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Debug, Clone)]
pub struct Pagination {
    pub offset: u32,
    pub total_count: Option<u32>,
    pub count: u32,
}