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