pub struct UsersListOptions {
pub filter_term: Option<String>,
pub user_type: Option<GetUserType>,
pub external_app_user_id: Option<String>,
pub fields: Option<Vec<String>>,
pub offset: Option<i64>,
pub limit: Option<i64>,
pub usemarker: Option<bool>,
pub marker: Option<String>,
}Expand description
Optional parameters for UsersManager::list.
Fields§
§filter_term: Option<String>§user_type: Option<GetUserType>§external_app_user_id: Option<String>§fields: Option<Vec<String>>§offset: Option<i64>§limit: Option<i64>§usemarker: Option<bool>§marker: Option<String>Trait Implementations§
Source§impl Clone for UsersListOptions
impl Clone for UsersListOptions
Source§fn clone(&self) -> UsersListOptions
fn clone(&self) -> UsersListOptions
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 UsersListOptions
impl Debug for UsersListOptions
Source§impl Default for UsersListOptions
impl Default for UsersListOptions
Source§fn default() -> UsersListOptions
fn default() -> UsersListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UsersListOptions
impl RefUnwindSafe for UsersListOptions
impl Send for UsersListOptions
impl Sync for UsersListOptions
impl Unpin for UsersListOptions
impl UnsafeUnpin for UsersListOptions
impl UnwindSafe for UsersListOptions
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