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