pub struct ListUsersQuery {
pub email: Option<String>,
}Expand description
Optional server-side filters for UsersResource::list.
Fields§
§email: Option<String>Only return the user(s) with this email address (the endpoint’s ?email= filter).
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
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