pub struct PrivateNoteListData {
pub list: Option<Vec<PrivateNoteItem>>,
pub page: Option<NotePage>,
}
Expand description
用户私有笔记列表数据
Fields§
§list: Option<Vec<PrivateNoteItem>>
§page: Option<NotePage>
Trait Implementations§
Source§impl Clone for PrivateNoteListData
impl Clone for PrivateNoteListData
Source§fn clone(&self) -> PrivateNoteListData
fn clone(&self) -> PrivateNoteListData
Returns a duplicate 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 PrivateNoteListData
impl Debug for PrivateNoteListData
Source§impl<'de> Deserialize<'de> for PrivateNoteListData
impl<'de> Deserialize<'de> for PrivateNoteListData
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 PrivateNoteListData
impl RefUnwindSafe for PrivateNoteListData
impl Send for PrivateNoteListData
impl Sync for PrivateNoteListData
impl Unpin for PrivateNoteListData
impl UnwindSafe for PrivateNoteListData
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