pub struct PaginatedNoteList {
pub count: i32,
pub next: Option<Option<String>>,
pub previous: Option<Option<String>>,
pub results: Vec<Note>,
}Fields§
§count: i32§next: Option<Option<String>>§previous: Option<Option<String>>§results: Vec<Note>Implementations§
Trait Implementations§
Source§impl Clone for PaginatedNoteList
impl Clone for PaginatedNoteList
Source§fn clone(&self) -> PaginatedNoteList
fn clone(&self) -> PaginatedNoteList
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 PaginatedNoteList
impl Debug for PaginatedNoteList
Source§impl Default for PaginatedNoteList
impl Default for PaginatedNoteList
Source§fn default() -> PaginatedNoteList
fn default() -> PaginatedNoteList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedNoteList
impl<'de> Deserialize<'de> for PaginatedNoteList
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
Source§impl PartialEq for PaginatedNoteList
impl PartialEq for PaginatedNoteList
Source§impl Serialize for PaginatedNoteList
impl Serialize for PaginatedNoteList
impl StructuralPartialEq for PaginatedNoteList
Auto Trait Implementations§
impl Freeze for PaginatedNoteList
impl RefUnwindSafe for PaginatedNoteList
impl Send for PaginatedNoteList
impl Sync for PaginatedNoteList
impl Unpin for PaginatedNoteList
impl UnsafeUnpin for PaginatedNoteList
impl UnwindSafe for PaginatedNoteList
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