Type Alias ClientResult

Source
pub type ClientResult<T> = Result<T, ClientError>;
Expand description

This is an alias for the result type returned by the Client.

Aliased Type§

pub enum ClientResult<T> {
    Ok(T),
    Err(ClientError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ClientError)

Contains the error value