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