pub struct ListUsersQuery {
pub limit: Option<u32>,
pub after: Option<String>,
pub emails: Option<Vec<String>>,
}Available on crate feature
administration-types only.Expand description
Query parameters for listing users.
Fields§
§limit: Option<u32>A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.
after: Option<String>A cursor for use in pagination. after is an object ID that defines your place in the
list.
emails: Option<Vec<String>>Filter by the email address of users.
Trait Implementations§
Source§impl Clone for ListUsersQuery
impl Clone for ListUsersQuery
Source§fn clone(&self) -> ListUsersQuery
fn clone(&self) -> ListUsersQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListUsersQuery
impl Debug for ListUsersQuery
Source§impl Default for ListUsersQuery
impl Default for ListUsersQuery
Source§fn default() -> ListUsersQuery
fn default() -> ListUsersQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListUsersQuery
impl PartialEq for ListUsersQuery
Source§impl Serialize for ListUsersQuery
impl Serialize for ListUsersQuery
impl StructuralPartialEq for ListUsersQuery
Auto Trait Implementations§
impl Freeze for ListUsersQuery
impl RefUnwindSafe for ListUsersQuery
impl Send for ListUsersQuery
impl Sync for ListUsersQuery
impl Unpin for ListUsersQuery
impl UnsafeUnpin for ListUsersQuery
impl UnwindSafe for ListUsersQuery
Blanket Implementations§
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