pub struct StoreCollectionClient { /* private fields */ }Expand description
Client for the Apify Store.
Implementations§
Source§impl StoreCollectionClient
impl StoreCollectionClient
Sourcepub async fn list(
&self,
options: StoreListOptions,
) -> ApifyClientResult<PaginationList<ActorStoreListItem>>
pub async fn list( &self, options: StoreListOptions, ) -> ApifyClientResult<PaginationList<ActorStoreListItem>>
Lists Actors from the Apify Store matching the given options.
Awaiting once returns a single page; use StoreCollectionClient::iterate to lazily
iterate across pages.
Sourcepub fn iterate(&self, options: StoreListOptions) -> StoreActorIterator
pub fn iterate(&self, options: StoreListOptions) -> StoreActorIterator
Lazily iterates all Store Actors matching options, fetching pages on demand.
Returns a StoreActorIterator whose next method
yields one Actor at a time, transparently fetching subsequent pages.
Trait Implementations§
Source§impl Clone for StoreCollectionClient
impl Clone for StoreCollectionClient
Source§fn clone(&self) -> StoreCollectionClient
fn clone(&self) -> StoreCollectionClient
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 !RefUnwindSafe for StoreCollectionClient
impl !UnwindSafe for StoreCollectionClient
impl Freeze for StoreCollectionClient
impl Send for StoreCollectionClient
impl Sync for StoreCollectionClient
impl Unpin for StoreCollectionClient
impl UnsafeUnpin for StoreCollectionClient
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