ClientResult

Type Alias ClientResult 

Source
pub type ClientResult<'c, T, C> = Result<FutureResult<'c, T, C>, ClientError>;

Aliased Type§

pub enum ClientResult<'c, T, C> {
    Ok(FutureResult<'c, T, C>),
    Err(ClientError),
}

Variants§

§1.0.0

Ok(FutureResult<'c, T, C>)

Contains the success value

§1.0.0

Err(ClientError)

Contains the error value