#[non_exhaustive]pub struct GetAllUsersOptions {
pub auth_domain: Option<String>,
pub retry_strategy: Option<Arc<dyn RetryStrategy>>,
}Expand description
Options for listing all users.
auth_domain— The authentication domain to list users from.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.auth_domain: Option<String>The authentication domain to list users from.
retry_strategy: Option<Arc<dyn RetryStrategy>>Override the default retry strategy for this operation.
Implementations§
Source§impl GetAllUsersOptions
impl GetAllUsersOptions
Sourcepub fn auth_domain(self, auth_domain: impl Into<String>) -> Self
pub fn auth_domain(self, auth_domain: impl Into<String>) -> Self
Sets the authentication domain.
Sourcepub fn retry_strategy(self, retry_strategy: Arc<dyn RetryStrategy>) -> Self
pub fn retry_strategy(self, retry_strategy: Arc<dyn RetryStrategy>) -> Self
Sets a custom retry strategy for this operation.
Trait Implementations§
Source§impl Clone for GetAllUsersOptions
impl Clone for GetAllUsersOptions
Source§fn clone(&self) -> GetAllUsersOptions
fn clone(&self) -> GetAllUsersOptions
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 moreSource§impl Debug for GetAllUsersOptions
impl Debug for GetAllUsersOptions
Source§impl Default for GetAllUsersOptions
impl Default for GetAllUsersOptions
Source§fn default() -> GetAllUsersOptions
fn default() -> GetAllUsersOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetAllUsersOptions
impl !RefUnwindSafe for GetAllUsersOptions
impl Send for GetAllUsersOptions
impl Sync for GetAllUsersOptions
impl Unpin for GetAllUsersOptions
impl UnsafeUnpin for GetAllUsersOptions
impl !UnwindSafe for GetAllUsersOptions
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