pub struct PaginateResponse<K, T> {
pub next_key: Option<K>,
pub items: Vec<T>,
}
Fields§
§next_key: Option<K>
§items: Vec<T>
Auto Trait Implementations§
impl<K, T> Freeze for PaginateResponse<K, T>where
K: Freeze,
impl<K, T> RefUnwindSafe for PaginateResponse<K, T>where
K: RefUnwindSafe,
T: RefUnwindSafe,
impl<K, T> Send for PaginateResponse<K, T>
impl<K, T> Sync for PaginateResponse<K, T>
impl<K, T> Unpin for PaginateResponse<K, T>
impl<K, T> UnwindSafe for PaginateResponse<K, T>where
K: UnwindSafe,
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