Type Alias autofill::error::ApiResult

source ·
pub type ApiResult<T> = Result<T, AutofillApiError>;
Expand description

Result enum for the public API

Aliased Type§

enum ApiResult<T> {
    Ok(T),
    Err(AutofillApiError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AutofillApiError)

Contains the error value