pub struct UserPage {
pub users: Vec<UserRecord>,
pub next_page_token: Option<String>,
}Expand description
One page of a list_users call.
Fields§
§users: Vec<UserRecord>Users returned on this page.
next_page_token: Option<String>Token to pass to the next list_users call, if more pages remain.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UserPage
impl RefUnwindSafe for UserPage
impl Send for UserPage
impl Sync for UserPage
impl Unpin for UserPage
impl UnsafeUnpin for UserPage
impl UnwindSafe for UserPage
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more