rust_wheel 0.1.13

A project to define some public component.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use rocket::serde::Deserialize;
use rocket::serde::Serialize;

#[derive(Debug, PartialEq, Eq, Deserialize, Serialize, Default)]
#[allow(non_snake_case)]
pub struct Pagination {
    pub pageNum: i64,
    pub pageSize: i64,
    pub total: i64
}