ResponseResult

Type Alias ResponseResult 

Source
pub type ResponseResult<Resp> = Result<Resp, ResponseError>;
Expand description

TODO: Rename as ResponseResult?

Aliased Type§

pub enum ResponseResult<Resp> {
    Ok(Resp),
    Err(ResponseError),
}

Variants§

§1.0.0

Ok(Resp)

Contains the success value

§1.0.0

Err(ResponseError)

Contains the error value