pub fn convert<T, T2, A, B, C>(
    t: impl Transform<T, A, B>,
    t2: impl Transform<T2, B, C>
) -> ConvertMiddleware<T, T2, A, B, C> where
    T: Send + Sync + 'static,
    T2: Send + Sync + 'static,
    A: Send + Sync + 'static,
    B: Send + Sync + 'static,
    C: Send + Sync + 'static, 
Expand description

Creates a new conversion middleware from two existing transforms