pub struct StoreActorIterator { /* private fields */ }Expand description
A lazy, page-fetching iterator over Apify Store Actors.
Created by StoreCollectionClient::iterate. Each call to next
returns the next Actor, fetching another page from the API when the local buffer is
exhausted, until all matching Actors have been yielded.
Implementations§
Source§impl StoreActorIterator
impl StoreActorIterator
Sourcepub async fn next(&mut self) -> ApifyClientResult<Option<ActorStoreListItem>>
pub async fn next(&mut self) -> ApifyClientResult<Option<ActorStoreListItem>>
Returns the next Store Actor, or None when the listing is exhausted.
Auto Trait Implementations§
impl !RefUnwindSafe for StoreActorIterator
impl !UnwindSafe for StoreActorIterator
impl Freeze for StoreActorIterator
impl Send for StoreActorIterator
impl Sync for StoreActorIterator
impl Unpin for StoreActorIterator
impl UnsafeUnpin for StoreActorIterator
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