pub type ServiceResult = Result<Response, BoxError>;

Aliased Type§

enum ServiceResult {
    Ok(Response),
    Err(Box<dyn Error + Send + Sync>),
}

Variants§

§1.0.0

Ok(Response)

Contains the success value

§1.0.0

Err(Box<dyn Error + Send + Sync>)

Contains the error value