pub struct OAuthInitICloudRecoveryInput {
pub client_type: ICloudClientType,
}Expand description
The input for initiating an iCloud OAuth recovery flow.
JSON schema
{
"title": "OAuthInitICloudRecoveryInput",
"description": "The input for initiating an iCloud OAuth recovery
flow.",
"type": "object",
"required": [
"client_type"
],
"properties": {
"client_type": {
"$ref": "#/components/schemas/ICloudClientType"
}
},
"x-stainless-model":
"embedded_wallets.oauth_init_icloud_recovery_input"
}Fields§
§client_type: ICloudClientTypeTrait Implementations§
Source§impl Clone for OAuthInitICloudRecoveryInput
impl Clone for OAuthInitICloudRecoveryInput
Source§fn clone(&self) -> OAuthInitICloudRecoveryInput
fn clone(&self) -> OAuthInitICloudRecoveryInput
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 OAuthInitICloudRecoveryInput
impl Debug for OAuthInitICloudRecoveryInput
Source§impl<'de> Deserialize<'de> for OAuthInitICloudRecoveryInput
impl<'de> Deserialize<'de> for OAuthInitICloudRecoveryInput
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<&OAuthInitICloudRecoveryInput> for OAuthInitICloudRecoveryInput
impl From<&OAuthInitICloudRecoveryInput> for OAuthInitICloudRecoveryInput
Source§fn from(value: &OAuthInitICloudRecoveryInput) -> Self
fn from(value: &OAuthInitICloudRecoveryInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OAuthInitICloudRecoveryInput
impl RefUnwindSafe for OAuthInitICloudRecoveryInput
impl Send for OAuthInitICloudRecoveryInput
impl Sync for OAuthInitICloudRecoveryInput
impl Unpin for OAuthInitICloudRecoveryInput
impl UnsafeUnpin for OAuthInitICloudRecoveryInput
impl UnwindSafe for OAuthInitICloudRecoveryInput
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