Type Alias ProxyResult

Source
pub type ProxyResult<E = Error> = Result<ProxyResponse<E>>;

Aliased Type§

pub enum ProxyResult<E = Error> {
    Ok(Response<BoxBody<Bytes, E>>),
    Err(Report),
}

Variants§

§1.0.0

Ok(Response<BoxBody<Bytes, E>>)

Contains the success value

§1.0.0

Err(Report)

Contains the error value