pub type BitFlyerRequestError = RequestError<&'static str, BitFlyerHandlerError>;Aliased Type§
pub enum BitFlyerRequestError {
SendRequest(Error),
ReceiveResponse(Error),
BuildRequestError(&'static str),
ResponseHandleError(BitFlyerHandlerError),
}Variants§
SendRequest(Error)
An error which occurred while sending a HTTP request.
ReceiveResponse(Error)
An error which occurred while receiving a HTTP response.
BuildRequestError(&'static str)
Error occurred in [RequestHandler::build_request()].
ResponseHandleError(BitFlyerHandlerError)
An error which was returned by [RequestHandler].