pub struct BuildCollectionClient { /* private fields */ }Expand description
Client for listing Actor builds.
Implementations§
Source§impl BuildCollectionClient
impl BuildCollectionClient
Sourcepub async fn list(
&self,
options: ListOptions,
) -> ApifyClientResult<PaginationList<Build>>
pub async fn list( &self, options: ListOptions, ) -> ApifyClientResult<PaginationList<Build>>
Lists builds with offset/limit pagination.
Sourcepub fn iterate(&self, options: ListOptions) -> ListIterator<Build>
pub fn iterate(&self, options: ListOptions) -> ListIterator<Build>
Lazily iterates over all builds matching options, fetching pages on demand.
options.limit caps the total number of items yielded across all pages, unlike
list where limit is a single page’s size. Set the per-page fetch size
with with_chunk_size; see
ListIterator for details.
Trait Implementations§
Source§impl Clone for BuildCollectionClient
impl Clone for BuildCollectionClient
Source§fn clone(&self) -> BuildCollectionClient
fn clone(&self) -> BuildCollectionClient
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 BuildCollectionClient
impl !UnwindSafe for BuildCollectionClient
impl Freeze for BuildCollectionClient
impl Send for BuildCollectionClient
impl Sync for BuildCollectionClient
impl Unpin for BuildCollectionClient
impl UnsafeUnpin for BuildCollectionClient
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