pub struct CreateRegistrationChallengeRequest {
pub org_id: Option<String>,
pub tenant_id: Option<String>,
pub username: String,
pub registration_code: String,
}Expand description
Create Registration Challenge
Fields§
§org_id: Option<String>§tenant_id: Option<String>§username: String§registration_code: StringTrait Implementations§
Source§impl Clone for CreateRegistrationChallengeRequest
impl Clone for CreateRegistrationChallengeRequest
Source§fn clone(&self) -> CreateRegistrationChallengeRequest
fn clone(&self) -> CreateRegistrationChallengeRequest
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<'de> Deserialize<'de> for CreateRegistrationChallengeRequest
impl<'de> Deserialize<'de> for CreateRegistrationChallengeRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for CreateRegistrationChallengeRequest
impl RefUnwindSafe for CreateRegistrationChallengeRequest
impl Send for CreateRegistrationChallengeRequest
impl Sync for CreateRegistrationChallengeRequest
impl Unpin for CreateRegistrationChallengeRequest
impl UnsafeUnpin for CreateRegistrationChallengeRequest
impl UnwindSafe for CreateRegistrationChallengeRequest
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