pub struct GetHomeCopyResponseFeaturesReleaseTitle {
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
GetHomeCopyResponseFeaturesReleaseTitle
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 GetHomeCopyResponseFeaturesReleaseTitle
impl Clone for GetHomeCopyResponseFeaturesReleaseTitle
Source§fn clone(&self) -> GetHomeCopyResponseFeaturesReleaseTitle
fn clone(&self) -> GetHomeCopyResponseFeaturesReleaseTitle
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 GetHomeCopyResponseFeaturesReleaseTitle
impl<'de> Deserialize<'de> for GetHomeCopyResponseFeaturesReleaseTitle
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<&GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
impl From<&GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
Source§fn from(value: &GetHomeCopyResponseFeaturesReleaseTitle) -> Self
fn from(value: &GetHomeCopyResponseFeaturesReleaseTitle) -> Self
Converts to this type from the input type.
Source§impl From<GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
impl From<GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
Source§fn from(value: GetHomeCopyResponseFeaturesReleaseTitle) -> Self
fn from(value: GetHomeCopyResponseFeaturesReleaseTitle) -> Self
Converts to this type from the input type.
Source§impl TryFrom<GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
impl TryFrom<GetHomeCopyResponseFeaturesReleaseTitle> for GetHomeCopyResponseFeaturesReleaseTitle
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: GetHomeCopyResponseFeaturesReleaseTitle,
) -> Result<Self, ConversionError>
fn try_from( value: GetHomeCopyResponseFeaturesReleaseTitle, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GetHomeCopyResponseFeaturesReleaseTitle
impl RefUnwindSafe for GetHomeCopyResponseFeaturesReleaseTitle
impl Send for GetHomeCopyResponseFeaturesReleaseTitle
impl Sync for GetHomeCopyResponseFeaturesReleaseTitle
impl Unpin for GetHomeCopyResponseFeaturesReleaseTitle
impl UnsafeUnpin for GetHomeCopyResponseFeaturesReleaseTitle
impl UnwindSafe for GetHomeCopyResponseFeaturesReleaseTitle
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