pub struct GetHomeCopyResponseFeaturesReleaseBody {
pub de: Option<String>,
pub en: Option<String>,
pub es: Option<String>,
pub fr: Option<String>,
pub it: Option<String>,
pub zh_cn: Option<String>,
}Expand description
GetHomeCopyResponseFeaturesReleaseBody
JSON schema
{
"type": "object",
"properties": {
"de": {
"type": "string"
},
"en": {
"type": "string"
},
"es": {
"type": "string"
},
"fr": {
"type": "string"
},
"it": {
"type": "string"
},
"zh-CN": {
"type": "string"
}
}
}Fields§
§de: Option<String>§en: Option<String>§es: Option<String>§fr: Option<String>§it: Option<String>§zh_cn: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for GetHomeCopyResponseFeaturesReleaseBody
impl Clone for GetHomeCopyResponseFeaturesReleaseBody
Source§fn clone(&self) -> GetHomeCopyResponseFeaturesReleaseBody
fn clone(&self) -> GetHomeCopyResponseFeaturesReleaseBody
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 GetHomeCopyResponseFeaturesReleaseBody
impl<'de> Deserialize<'de> for GetHomeCopyResponseFeaturesReleaseBody
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<&GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
impl From<&GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
Source§fn from(value: &GetHomeCopyResponseFeaturesReleaseBody) -> Self
fn from(value: &GetHomeCopyResponseFeaturesReleaseBody) -> Self
Converts to this type from the input type.
Source§impl From<GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
impl From<GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
Source§fn from(value: GetHomeCopyResponseFeaturesReleaseBody) -> Self
fn from(value: GetHomeCopyResponseFeaturesReleaseBody) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
impl TryFrom<GetHomeCopyResponseFeaturesReleaseBody> for GetHomeCopyResponseFeaturesReleaseBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetHomeCopyResponseFeaturesReleaseBody,
) -> Result<Self, ConversionError>
fn try_from( value: GetHomeCopyResponseFeaturesReleaseBody, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetHomeCopyResponseFeaturesReleaseBody
impl RefUnwindSafe for GetHomeCopyResponseFeaturesReleaseBody
impl Send for GetHomeCopyResponseFeaturesReleaseBody
impl Sync for GetHomeCopyResponseFeaturesReleaseBody
impl Unpin for GetHomeCopyResponseFeaturesReleaseBody
impl UnsafeUnpin for GetHomeCopyResponseFeaturesReleaseBody
impl UnwindSafe for GetHomeCopyResponseFeaturesReleaseBody
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