pub struct ListEntries {
pub count: u64,
pub entries: Vec<ListEntry>,
pub next_page_token: Option<String>,
}Expand description
One page of list entries from [Client::list_list_entries_page].
Fields§
§count: u64Total entries in the list (not just this page).
entries: Vec<ListEntry>This page of entries.
next_page_token: Option<String>Cursor for the next page; None on the last page.
Trait Implementations§
Source§impl Clone for ListEntries
impl Clone for ListEntries
Source§fn clone(&self) -> ListEntries
fn clone(&self) -> ListEntries
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 ListEntries
impl Debug for ListEntries
Source§impl<'de> Deserialize<'de> for ListEntries
impl<'de> Deserialize<'de> for ListEntries
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 ListEntries
impl RefUnwindSafe for ListEntries
impl Send for ListEntries
impl Sync for ListEntries
impl Unpin for ListEntries
impl UnsafeUnpin for ListEntries
impl UnwindSafe for ListEntries
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