pub struct PagedList {
pub results: Vec<Value>,
pub count: i64,
pub next: Option<String>,
pub previous: Option<String>,
}Expand description
Paginated list response.
Fields§
§results: Vec<Value>§count: i64§next: Option<String>§previous: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for PagedList
impl<'de> Deserialize<'de> for PagedList
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 PagedList
impl RefUnwindSafe for PagedList
impl Send for PagedList
impl Sync for PagedList
impl Unpin for PagedList
impl UnsafeUnpin for PagedList
impl UnwindSafe for PagedList
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