Skip to main content

ApifyClientResult

Type Alias ApifyClientResult 

Source
pub type ApifyClientResult<T> = Result<T, ApifyClientError>;
Expand description

The result type used throughout this crate.

Aliased Type§

pub enum ApifyClientResult<T> {
    Ok(T),
    Err(ApifyClientError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ApifyClientError)

Contains the error value