pub struct ListUserAuthFactorsParams {
pub before: Option<String>,
pub after: Option<String>,
pub limit: Option<i64>,
pub order: Option<PaginationOrder>,
}Fields§
§before: Option<String>An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
after: Option<String>An object ID that defines your place in the list. When the ID is not present, you are at the end of the list.
limit: Option<i64>Upper limit on the number of objects to return, between 1 and 100.
Defaults to 10.
order: Option<PaginationOrder>Order the results by the creation time.
Defaults to desc.
Trait Implementations§
Source§impl Clone for ListUserAuthFactorsParams
impl Clone for ListUserAuthFactorsParams
Source§fn clone(&self) -> ListUserAuthFactorsParams
fn clone(&self) -> ListUserAuthFactorsParams
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 ListUserAuthFactorsParams
impl Debug for ListUserAuthFactorsParams
Source§impl Default for ListUserAuthFactorsParams
impl Default for ListUserAuthFactorsParams
Auto Trait Implementations§
impl Freeze for ListUserAuthFactorsParams
impl RefUnwindSafe for ListUserAuthFactorsParams
impl Send for ListUserAuthFactorsParams
impl Sync for ListUserAuthFactorsParams
impl Unpin for ListUserAuthFactorsParams
impl UnsafeUnpin for ListUserAuthFactorsParams
impl UnwindSafe for ListUserAuthFactorsParams
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