pub type Response = Result<Json, Error>;
pub enum Response { Ok(Json), Err(Error), }
Contains the success value
Contains the error value