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