pub struct AdminUserFactorUpdateRequest {
pub user_id: String,
pub factor_id: String,
pub data: MFAFactorUpdateData,
}Expand description
Admin User Factor Update Request
Fields§
§user_id: String§factor_id: String§data: MFAFactorUpdateDataImplementations§
Source§impl AdminUserFactorUpdateRequest
impl AdminUserFactorUpdateRequest
Sourcepub fn builder() -> AdminUserFactorUpdateRequestBuilder<((), (), ())>
pub fn builder() -> AdminUserFactorUpdateRequestBuilder<((), (), ())>
Create a builder for building AdminUserFactorUpdateRequest.
On the builder, call .user_id(...), .factor_id(...), .data(...) to set the values of the fields.
Finally, call .build() to create the instance of AdminUserFactorUpdateRequest.
Trait Implementations§
Source§impl AuthModuleRequest for AdminUserFactorUpdateRequest
impl AuthModuleRequest for AdminUserFactorUpdateRequest
Source§type Res = MFAFactorSchema
type Res = MFAFactorSchema
The successful result type to be returned
Source§type Error = ErrorSchema
type Error = ErrorSchema
The error type to be returned on invalid data
Source§type Payload = MFAFactorUpdateData
type Payload = MFAFactorUpdateData
The payload that we will send as JSON during the request body
Source§impl Clone for AdminUserFactorUpdateRequest
impl Clone for AdminUserFactorUpdateRequest
Source§fn clone(&self) -> AdminUserFactorUpdateRequest
fn clone(&self) -> AdminUserFactorUpdateRequest
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AdminUserFactorUpdateRequest
impl Debug for AdminUserFactorUpdateRequest
Auto Trait Implementations§
impl Freeze for AdminUserFactorUpdateRequest
impl RefUnwindSafe for AdminUserFactorUpdateRequest
impl Send for AdminUserFactorUpdateRequest
impl Sync for AdminUserFactorUpdateRequest
impl Unpin for AdminUserFactorUpdateRequest
impl UnwindSafe for AdminUserFactorUpdateRequest
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)