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