pub enum Error {
Parse(Error),
Io(Error),
H2(Error),
H3(Error),
VersionNotSupported,
UnsupportedPush,
ClientRefusedResponse,
}
Expand description
General error for application-level logic.
Mostly, the Error::Parse
, Error::Io
, and Error::H2
signal errors with the request emitted from respective library.