pub type ReqwestStreamingError = ClientStreamingError;Expand description
Type alias for reqwest streaming errors, using the unified streaming error system
Aliased Type§
pub enum ReqwestStreamingError {
Client {
client: String,
error: Box<dyn Error + Sync + Send>,
},
HttpCache(StreamingError),
Other(Box<dyn Error + Sync + Send>),
}