Skip to main content

ProviderClientResult

Type Alias ProviderClientResult 

Source
pub type ProviderClientResult<T> = Result<T, ProviderClientError>;
Expand description

Result type returned by provider client construction helpers.

Aliased Type§

pub enum ProviderClientResult<T> {
    Ok(T),
    Err(ProviderClientError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ProviderClientError)

Contains the error value