firebase-admin 0.3.0

An open-source Firebase Admin SDK for Rust: Authentication and Cloud Messaging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Pagination helpers for `accounts:batchGet` (list users).

use crate::auth::users::model::UserRecord;

/// One page of a `list_users` call.
#[derive(Debug)]
pub struct UserPage {
    /// Users returned on this page.
    pub users: Vec<UserRecord>,
    /// Token to pass to the next `list_users` call, if more pages remain.
    pub next_page_token: Option<String>,
}