pub struct NotesItem {
pub note: String,
pub type_: String,
}
Expand description
NotesItem
JSON schema
{
"examples": [
{
"Note": "A note on the relationship",
"Type": "Relationship"
}
],
"type": "object",
"required": [
"Note",
"Type"
],
"properties": {
"Note": {
"type": "string"
},
"Type": {
"type": "string"
}
},
"additionalProperties": false
}
Fields§
§note: String
§type_: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NotesItem
impl<'de> Deserialize<'de> for NotesItem
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
Auto Trait Implementations§
impl Freeze for NotesItem
impl RefUnwindSafe for NotesItem
impl Send for NotesItem
impl Sync for NotesItem
impl Unpin for NotesItem
impl UnwindSafe for NotesItem
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