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