isahc 1.8.1

The practical HTTP client that is fun to use.
Documentation
use super::{Context, Interceptor, InterceptorFuture};
use crate::{body::AsyncBody, error::Error};
use http::Request;

/// Type-erased interceptor object.
pub(crate) struct InterceptorObj(Box<dyn DynInterceptor>);

impl InterceptorObj {
    pub(crate) fn new(interceptor: impl Interceptor + 'static) -> Self {
        Self(Box::new(interceptor))
    }
}

impl Interceptor for InterceptorObj {
    type Err = Error;

    fn intercept<'a>(
        &'a self,
        request: Request<AsyncBody>,
        cx: Context<'a>,
    ) -> InterceptorFuture<'a, Self::Err> {
        self.0.dyn_intercept(request, cx)
    }
}

/// Object-safe version of the interceptor used for type erasure. Implementation
/// detail of [`InterceptorObj`].
trait DynInterceptor: Send + Sync {
    fn dyn_intercept<'a>(
        &'a self,
        request: Request<AsyncBody>,
        cx: Context<'a>,
    ) -> InterceptorFuture<'a, Error>;
}

impl<I: Interceptor> DynInterceptor for I {
    fn dyn_intercept<'a>(
        &'a self,
        request: Request<AsyncBody>,
        cx: Context<'a>,
    ) -> InterceptorFuture<'a, Error> {
        Box::pin(async move { self.intercept(request, cx).await.map_err(Error::from_any) })
    }
}