pub struct DemonstrativeExamplesItemEntriesItem {
pub body_text: Option<String>,
pub example_code: Option<String>,
pub intro_text: Option<String>,
pub language: Option<String>,
pub nature: Option<String>,
pub reference: Option<String>,
}
Expand description
DemonstrativeExamplesItemEntriesItem
JSON schema
{
"type": "object",
"properties": {
"BodyText": {
"type": "string"
},
"ExampleCode": {
"type": "string"
},
"IntroText": {
"type": "string"
},
"Language": {
"type": "string"
},
"Nature": {
"type": "string"
},
"Reference": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§body_text: Option<String>
§example_code: Option<String>
§intro_text: Option<String>
§language: Option<String>
§nature: Option<String>
§reference: Option<String>
Trait Implementations§
Source§impl Clone for DemonstrativeExamplesItemEntriesItem
impl Clone for DemonstrativeExamplesItemEntriesItem
Source§fn clone(&self) -> DemonstrativeExamplesItemEntriesItem
fn clone(&self) -> DemonstrativeExamplesItemEntriesItem
Returns a copy of the value. Read more
1.0.0 · 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 DemonstrativeExamplesItemEntriesItem
impl<'de> Deserialize<'de> for DemonstrativeExamplesItemEntriesItem
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<&DemonstrativeExamplesItemEntriesItem> for DemonstrativeExamplesItemEntriesItem
impl From<&DemonstrativeExamplesItemEntriesItem> for DemonstrativeExamplesItemEntriesItem
Source§fn from(value: &DemonstrativeExamplesItemEntriesItem) -> Self
fn from(value: &DemonstrativeExamplesItemEntriesItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DemonstrativeExamplesItemEntriesItem
impl RefUnwindSafe for DemonstrativeExamplesItemEntriesItem
impl Send for DemonstrativeExamplesItemEntriesItem
impl Sync for DemonstrativeExamplesItemEntriesItem
impl Unpin for DemonstrativeExamplesItemEntriesItem
impl UnwindSafe for DemonstrativeExamplesItemEntriesItem
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