1 2 3 4 5 6 7
//! Pagination related structs and implementations #[derive(Debug, Serialize, Deserialize)] pub struct Pagination { pub offset : i64, pub limit : i64 }
1 2 3 4 5 6 7
//! Pagination related structs and implementations #[derive(Debug, Serialize, Deserialize)] pub struct Pagination { pub offset : i64, pub limit : i64 }