Struct rlstats::SearchResponse [] [src]

pub struct SearchResponse {
    pub page: Option<i32>,
    pub results: i32,
    pub total_results: i32,
    pub max_results_per_page: i32,
    pub data: Vec<Player>,
}

A search response.

Fields

The total number of players that match the search.

Trait Implementations

impl Debug for SearchResponse
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations