pub struct ListItemsRequest<P, S> {
pub prefix: P,
pub start_after: S,
pub limit: ListLimit,
}Fields§
§prefix: P§start_after: S§limit: ListLimitTrait Implementations§
Source§impl<P: Clone, S: Clone> Clone for ListItemsRequest<P, S>
impl<P: Clone, S: Clone> Clone for ListItemsRequest<P, S>
Source§fn clone(&self) -> ListItemsRequest<P, S>
fn clone(&self) -> ListItemsRequest<P, S>
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 moreAuto Trait Implementations§
impl<P, S> Freeze for ListItemsRequest<P, S>
impl<P, S> RefUnwindSafe for ListItemsRequest<P, S>where
P: RefUnwindSafe,
S: RefUnwindSafe,
impl<P, S> Send for ListItemsRequest<P, S>
impl<P, S> Sync for ListItemsRequest<P, S>
impl<P, S> Unpin for ListItemsRequest<P, S>
impl<P, S> UnsafeUnpin for ListItemsRequest<P, S>where
P: UnsafeUnpin,
S: UnsafeUnpin,
impl<P, S> UnwindSafe for ListItemsRequest<P, S>where
P: UnwindSafe,
S: 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