pub struct AdminSearchUsersQuery {
pub source_id: Option<i64>,
pub login_name: Option<String>,
pub is_2fa_enabled: Option<bool>,
pub sort: Option<AdminSearchUsersQuerySort>,
}Fields§
§source_id: Option<i64>ID of the user’s login source to search for
login_name: Option<String>user’s login name to search for
is_2fa_enabled: Option<bool>whether or not to filter users with the 2fa enabled
sort: Option<AdminSearchUsersQuerySort>sort order of results
Trait Implementations§
Source§impl Clone for AdminSearchUsersQuery
impl Clone for AdminSearchUsersQuery
Source§fn clone(&self) -> AdminSearchUsersQuery
fn clone(&self) -> AdminSearchUsersQuery
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 AdminSearchUsersQuery
impl Debug for AdminSearchUsersQuery
Source§impl Default for AdminSearchUsersQuery
impl Default for AdminSearchUsersQuery
Source§fn default() -> AdminSearchUsersQuery
fn default() -> AdminSearchUsersQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for AdminSearchUsersQuery
impl PartialEq for AdminSearchUsersQuery
Source§fn eq(&self, other: &AdminSearchUsersQuery) -> bool
fn eq(&self, other: &AdminSearchUsersQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdminSearchUsersQuery
Auto Trait Implementations§
impl Freeze for AdminSearchUsersQuery
impl RefUnwindSafe for AdminSearchUsersQuery
impl Send for AdminSearchUsersQuery
impl Sync for AdminSearchUsersQuery
impl Unpin for AdminSearchUsersQuery
impl UnsafeUnpin for AdminSearchUsersQuery
impl UnwindSafe for AdminSearchUsersQuery
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