pub type QueueResponse = Result<Response, ApiError>;
Response sent back through the oneshot channel
pub enum QueueResponse { Ok(Response<Body>), Err(ApiError), }
Contains the success value
Contains the error value