pub struct MfaVerifyResponseBody {
pub token: String,
}Expand description
The response body for verifying a MFA code.
JSON schema
{
"title": "MfaVerifyResponseBody",
"description": "The response body for verifying a MFA code.",
"type": "object",
"required": [
"token"
],
"properties": {
"token": {
"type": "string"
}
}
}Fields§
§token: StringTrait Implementations§
Source§impl Clone for MfaVerifyResponseBody
impl Clone for MfaVerifyResponseBody
Source§fn clone(&self) -> MfaVerifyResponseBody
fn clone(&self) -> MfaVerifyResponseBody
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 MfaVerifyResponseBody
impl Debug for MfaVerifyResponseBody
Source§impl<'de> Deserialize<'de> for MfaVerifyResponseBody
impl<'de> Deserialize<'de> for MfaVerifyResponseBody
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
Source§impl From<&MfaVerifyResponseBody> for MfaVerifyResponseBody
impl From<&MfaVerifyResponseBody> for MfaVerifyResponseBody
Source§fn from(value: &MfaVerifyResponseBody) -> Self
fn from(value: &MfaVerifyResponseBody) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MfaVerifyResponseBody
impl RefUnwindSafe for MfaVerifyResponseBody
impl Send for MfaVerifyResponseBody
impl Sync for MfaVerifyResponseBody
impl Unpin for MfaVerifyResponseBody
impl UnsafeUnpin for MfaVerifyResponseBody
impl UnwindSafe for MfaVerifyResponseBody
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