Struct ApifyClient

Source
pub struct ApifyClient {
    pub optional_token: Option<String>,
    pub http_client: Client,
    pub base_time_to_retry: u32,
    pub debug_log: bool,
}

Fields§

§optional_token: Option<String>§http_client: Client§base_time_to_retry: u32§debug_log: bool

Implementations§

Source§

impl ApifyClient

Source

pub fn new(optional_token: Option<String>) -> ApifyClient

Creates a new Apify client with an optional token Be aware that all write operations requires token Some read operations require token, some have optional token and some don’t Using a method that requires token without a token in a client will result in Error

Source

pub fn token(&mut self, token: String)

Sets a token on the client

Source§

impl ApifyClient

Source

pub fn list_datasets(&self) -> ListDatasetsBuilder<'_>

List datasets of the provided account. Requires API token.

Source

pub fn create_dataset(&self, dataset_name: &str) -> SimpleBuilder<'_, Dataset>

Requires API token

Source

pub fn get_dataset( &self, dataset_id_or_name: &IdOrName, ) -> SimpleBuilder<'_, Dataset>

Gets a dataset info object If you provide dataset ID, you don’t need a token If you provide username~datasetName, you need a token (otherwise it will return an Error)

Source

pub fn update_dataset( &self, dataset_id_or_name: &IdOrName, new_dataset_name: &str, ) -> SimpleBuilder<'_, Dataset>

Requires API token

Source

pub fn delete_dataset( &self, dataset_id_or_name: &IdOrName, ) -> SimpleBuilder<'_, NoContent>

Requires API token

Source

pub fn put_items<T: Serialize>( &self, dataset_id_or_name: &IdOrName, items: &T, ) -> SimpleBuilder<'_, NoContent>

Appends item(s) at the end of the dataset. items must serialize into JSON object or array of objects and the JSON must have size less than 5 MB. Otherwise the Apify API returns an error. Requires API token. API reference

Source

pub fn get_items<T: DeserializeOwned>( &self, dataset_id_or_name: IdOrName, ) -> GetItemsBuilder<'_, T>

Gets items from the dataset in JSON format and parses them into PaginationList<T>. If you need non-parsed String and/or different formats choose get_items_raw instead. API reference.

Source

pub fn get_items_raw( &self, dataset_id_or_name: IdOrName, ) -> GetItemsBuilderRaw<'_>

Gets items from the dataset in any format and return them as String (no PaginationList). API reference.

Source§

impl ApifyClient

Source

pub async fn retrying_request( &self, url: &str, method: &Method, body: &Option<Vec<u8>>, headers: &Option<HeaderMap>, ) -> Result<Response, ApifyApiError>

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,