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