//! Pagination helpers for `accounts:batchGet` (list users).
usecrate::auth::users::model::UserRecord;/// One page of a `list_users` call.
#[derive(Debug)]pubstructUserPage{/// Users returned on this page.
pubusers:Vec<UserRecord>,
/// Token to pass to the next `list_users` call, if more pages remain.
pubnext_page_token:Option<String>,
}