useserde::Deserialize;/// Pagination struct used by Bunny.net API
#[derive(Deserialize, Debug, Clone)]#[serde(rename_all ="PascalCase")]pubstructPagination<T>{/// Vector of type T
pubitems:Vec<T>,
/// Current page number
pubcurrent_page:i32,
/// Total amount of type T
pubtotal_items:i32,
/// Has more items
pubhas_more_items:bool,
}