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