pub struct StoreListOptions {
pub offset: Option<i64>,
pub limit: Option<i64>,
pub search: Option<String>,
pub sort_by: Option<String>,
pub category: Option<String>,
pub username: Option<String>,
pub pricing_model: Option<String>,
pub include_unrunnable_actors: Option<bool>,
pub allows_agentic_users: Option<bool>,
pub response_format: Option<String>,
}Expand description
Options for searching the Apify Store.
Fields§
§offset: Option<i64>Number of items to skip.
limit: Option<i64>Maximum number of items to return per page.
search: Option<String>Full-text search query.
sort_by: Option<String>Sort key (e.g. popularity, newest).
category: Option<String>Filter by category.
username: Option<String>Filter by owner username.
pricing_model: Option<String>Filter by pricing model.
include_unrunnable_actors: Option<bool>Include Actors that the current user cannot run (e.g. needing a missing integration).
allows_agentic_users: Option<bool>Filter to Actors that allow agentic (x402/Skyfire) users.
response_format: Option<String>Response format requested from the API (e.g. json).
Trait Implementations§
Source§impl Clone for StoreListOptions
impl Clone for StoreListOptions
Source§fn clone(&self) -> StoreListOptions
fn clone(&self) -> StoreListOptions
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 moreSource§impl Debug for StoreListOptions
impl Debug for StoreListOptions
Source§impl Default for StoreListOptions
impl Default for StoreListOptions
Source§fn default() -> StoreListOptions
fn default() -> StoreListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StoreListOptions
impl RefUnwindSafe for StoreListOptions
impl Send for StoreListOptions
impl Sync for StoreListOptions
impl Unpin for StoreListOptions
impl UnsafeUnpin for StoreListOptions
impl UnwindSafe for StoreListOptions
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