pub type ReplyResult<T> = Result<T, APIResponseError>;
ReplyResult is returned when send a request
pub enum ReplyResult<T> { Ok(T), Err(Box<dyn Error>), }
Contains the success value
Contains the error value