pub struct AdminGetKindResponseKindPublicPageCopy {
pub hero: Option<AdminGetKindResponseKindPublicPageCopyHero>,
pub hero_translations: Map<String, Value>,
pub intro: Option<AdminGetKindResponseKindPublicPageCopyIntro>,
pub intro_translations: Map<String, Value>,
}Expand description
AdminGetKindResponseKindPublicPageCopy
JSON schema
{
"type": "object",
"required": [
"hero",
"intro"
],
"properties": {
"hero": {
"type": [
"string",
"null"
],
"maxLength": 80
},
"heroTranslations": {
"type": "object"
},
"intro": {
"type": [
"string",
"null"
],
"maxLength": 600
},
"introTranslations": {
"type": "object"
}
}
}Fields§
§hero: Option<AdminGetKindResponseKindPublicPageCopyHero>§hero_translations: Map<String, Value>§intro: Option<AdminGetKindResponseKindPublicPageCopyIntro>§intro_translations: Map<String, Value>Implementations§
Trait Implementations§
Source§impl Clone for AdminGetKindResponseKindPublicPageCopy
impl Clone for AdminGetKindResponseKindPublicPageCopy
Source§fn clone(&self) -> AdminGetKindResponseKindPublicPageCopy
fn clone(&self) -> AdminGetKindResponseKindPublicPageCopy
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 AdminGetKindResponseKindPublicPageCopy
impl<'de> Deserialize<'de> for AdminGetKindResponseKindPublicPageCopy
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<&AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
impl From<&AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
Source§fn from(value: &AdminGetKindResponseKindPublicPageCopy) -> Self
fn from(value: &AdminGetKindResponseKindPublicPageCopy) -> Self
Converts to this type from the input type.
Source§impl From<AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
impl From<AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
Source§fn from(value: AdminGetKindResponseKindPublicPageCopy) -> Self
fn from(value: AdminGetKindResponseKindPublicPageCopy) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
impl TryFrom<AdminGetKindResponseKindPublicPageCopy> for AdminGetKindResponseKindPublicPageCopy
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AdminGetKindResponseKindPublicPageCopy,
) -> Result<Self, ConversionError>
fn try_from( value: AdminGetKindResponseKindPublicPageCopy, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AdminGetKindResponseKindPublicPageCopy
impl RefUnwindSafe for AdminGetKindResponseKindPublicPageCopy
impl Send for AdminGetKindResponseKindPublicPageCopy
impl Sync for AdminGetKindResponseKindPublicPageCopy
impl Unpin for AdminGetKindResponseKindPublicPageCopy
impl UnsafeUnpin for AdminGetKindResponseKindPublicPageCopy
impl UnwindSafe for AdminGetKindResponseKindPublicPageCopy
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