pub type ReqwestStreamingError = ClientStreamingError;Available on crate feature
streaming only.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 + Send + Sync>,
},
HttpCache(StreamingError),
Other(Box<dyn Error + Send + Sync>),
}