Type Alias backend::model::dto::PageLayerDto
source · pub type PageLayerDto = Page<LayerDto>;
Aliased Type§
struct PageLayerDto {
pub results: Vec<LayerDto>,
pub page: i32,
pub per_page: i32,
pub total_pages: i32,
}
Fields§
§results: Vec<LayerDto>
Resulting records.
page: i32
Current page number.
per_page: i32
Results per page.
total_pages: i32
Number of pages in total.