pub struct ListNote {
pub note_id: u64,
pub created_at: String,
pub created_by: String,
pub note: String,
}
Expand description
The most recent Note added about this member.
Fields§
§note_id: u64
The note id.
created_at: String
The date and time the note was created in ISO 8601 format.
created_by: String
The author of the note.
note: String
The content of the note.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListNote
impl<'de> Deserialize<'de> for ListNote
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 ListNote
impl RefUnwindSafe for ListNote
impl Send for ListNote
impl Sync for ListNote
impl Unpin for ListNote
impl UnwindSafe for ListNote
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