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: u64The note id.
created_at: StringThe date and time the note was created in ISO 8601 format.
created_by: StringThe author of the note.
note: StringThe 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