pub struct InteractionPage<T> {
pub records: Vec<T>,
pub next_key: Option<InteractionPageKey>,
pub has_more: bool,
}Expand description
One stable page of approval or deferred-tool records.
Fields§
§records: Vec<T>Records in updated_at DESC, stable_id DESC order.
next_key: Option<InteractionPageKey>Last returned key, or the requested start key when the page is empty.
has_more: boolWhether another record exists after next_key.
Trait Implementations§
Source§impl<T: Clone> Clone for InteractionPage<T>
impl<T: Clone> Clone for InteractionPage<T>
Source§fn clone(&self) -> InteractionPage<T>
fn clone(&self) -> InteractionPage<T>
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<T: Debug> Debug for InteractionPage<T>
impl<T: Debug> Debug for InteractionPage<T>
impl<T: Eq> Eq for InteractionPage<T>
Source§impl<T: PartialEq> PartialEq for InteractionPage<T>
impl<T: PartialEq> PartialEq for InteractionPage<T>
impl<T: PartialEq> StructuralPartialEq for InteractionPage<T>
Auto Trait Implementations§
impl<T> Freeze for InteractionPage<T>
impl<T> RefUnwindSafe for InteractionPage<T>where
T: RefUnwindSafe,
impl<T> Send for InteractionPage<T>where
T: Send,
impl<T> Sync for InteractionPage<T>where
T: Sync,
impl<T> Unpin for InteractionPage<T>where
T: Unpin,
impl<T> UnsafeUnpin for InteractionPage<T>
impl<T> UnwindSafe for InteractionPage<T>where
T: UnwindSafe,
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