pub struct ModesOfIntroductionItem {
pub note: Option<String>,
pub phase: Option<String>,
}
Expand description
ModesOfIntroductionItem
JSON schema
{
"type": "object",
"properties": {
"Note": {
"examples": [
"A brief note on the phase"
],
"type": "string"
},
"Phase": {
"examples": [
"Architecture and Design"
],
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§note: Option<String>
§phase: Option<String>
Trait Implementations§
Source§impl Clone for ModesOfIntroductionItem
impl Clone for ModesOfIntroductionItem
Source§fn clone(&self) -> ModesOfIntroductionItem
fn clone(&self) -> ModesOfIntroductionItem
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 Debug for ModesOfIntroductionItem
impl Debug for ModesOfIntroductionItem
Source§impl<'de> Deserialize<'de> for ModesOfIntroductionItem
impl<'de> Deserialize<'de> for ModesOfIntroductionItem
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<&ModesOfIntroductionItem> for ModesOfIntroductionItem
impl From<&ModesOfIntroductionItem> for ModesOfIntroductionItem
Source§fn from(value: &ModesOfIntroductionItem) -> Self
fn from(value: &ModesOfIntroductionItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ModesOfIntroductionItem
impl RefUnwindSafe for ModesOfIntroductionItem
impl Send for ModesOfIntroductionItem
impl Sync for ModesOfIntroductionItem
impl Unpin for ModesOfIntroductionItem
impl UnwindSafe for ModesOfIntroductionItem
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