pub struct CollectionItemsPage {
pub items: Vec<CollectionItem>,
pub offset: u64,
pub limit: u64,
pub total: u64,
pub next_offset: Option<u64>,
}Expand description
Result for
dig.listCollectionItems — a
page of resolved items.
Fields§
§items: Vec<CollectionItem>This page’s items.
offset: u64The page start (echoed).
limit: u64The page size (echoed).
total: u64The total item count across the whole (capped) launcher set.
next_offset: Option<u64>The next page’s offset, or null when exhausted.
Trait Implementations§
Source§impl Clone for CollectionItemsPage
impl Clone for CollectionItemsPage
Source§fn clone(&self) -> CollectionItemsPage
fn clone(&self) -> CollectionItemsPage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CollectionItemsPage
impl Debug for CollectionItemsPage
Source§impl<'de> Deserialize<'de> for CollectionItemsPage
impl<'de> Deserialize<'de> for CollectionItemsPage
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 CollectionItemsPage
impl PartialEq for CollectionItemsPage
Source§impl Serialize for CollectionItemsPage
impl Serialize for CollectionItemsPage
impl StructuralPartialEq for CollectionItemsPage
Auto Trait Implementations§
impl Freeze for CollectionItemsPage
impl RefUnwindSafe for CollectionItemsPage
impl Send for CollectionItemsPage
impl Sync for CollectionItemsPage
impl Unpin for CollectionItemsPage
impl UnsafeUnpin for CollectionItemsPage
impl UnwindSafe for CollectionItemsPage
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