pub struct SearchUsersParams {
pub location_id: String,
pub query: Option<String>,
pub limit: Option<u32>,
pub skip: Option<u32>,
pub role: Option<String>,
pub type: Option<String>,
pub sort: Option<String>,
pub sort_by: Option<String>,
pub enabled_2fa: Option<bool>,
}Fields§
§location_id: String§query: Option<String>§limit: Option<u32>§skip: Option<u32>§role: Option<String>§type: Option<String>§sort: Option<String>§sort_by: Option<String>§enabled_2fa: Option<bool>Trait Implementations§
Source§impl Clone for SearchUsersParams
impl Clone for SearchUsersParams
Source§fn clone(&self) -> SearchUsersParams
fn clone(&self) -> SearchUsersParams
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 SearchUsersParams
impl Debug for SearchUsersParams
Source§impl Default for SearchUsersParams
impl Default for SearchUsersParams
Source§fn default() -> SearchUsersParams
fn default() -> SearchUsersParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchUsersParams
impl<'de> Deserialize<'de> for SearchUsersParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SearchUsersParams
impl RefUnwindSafe for SearchUsersParams
impl Send for SearchUsersParams
impl Sync for SearchUsersParams
impl Unpin for SearchUsersParams
impl UnsafeUnpin for SearchUsersParams
impl UnwindSafe for SearchUsersParams
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