1
2
3
4
5
6
7
8
9
10
11
12
13
//! Return type of [load_page](crate::toql_api::ToqlApi::load_page) method.

/// Keeps page count information.
/// See [load_page](crate::toql_api::ToqlApi::load_page) for details.

#[derive(Debug)]
pub struct PageCounts {
    /// The number of filtered rows.
    pub filtered: u64,

    /// The number of total rows.
    pub total: u64,
}