pub struct SearchUsersParams {
pub tenant_id: String,
pub url_id: String,
pub username_starts_with: Option<String>,
pub mention_group_ids: Option<Vec<String>>,
pub sso: Option<String>,
}Expand description
struct for passing parameters to the method search_users
Fields§
§tenant_id: String§url_id: String§username_starts_with: Option<String>§mention_group_ids: Option<Vec<String>>§sso: Option<String>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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SearchUsersParams
impl RefUnwindSafe for SearchUsersParams
impl Send for SearchUsersParams
impl Sync for SearchUsersParams
impl Unpin 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