pub trait IntoMiddleware<T, A> {
    fn middleware(
        self
    ) -> Box<dyn Fn(T) -> ReusableBoxFuture<Result<T, ThrusterError<T>>> + Send + Sync>; }

Required Methods

Implementations on Foreign Types

Implementors