pub struct NoteList {
pub notes: Box<[Note]>,
}
Expand description
A list of notes for posts
Fields§
§notes: Box<[Note]>
The list of notes
Trait Implementations§
source§impl<'de> Deserialize<'de> for NoteList
impl<'de> Deserialize<'de> for NoteList
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 RefUnwindSafe for NoteList
impl Send for NoteList
impl Sync for NoteList
impl Unpin for NoteList
impl UnwindSafe for NoteList
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