pub type BitFlyerRequestError = RequestError<&'static str, BitFlyerHandlerError>;
Available on crate feature bitflyer only.

Aliased Type§

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].