pub trait InspectJson<C> where
    C: FnOnce(&str) + Send + 'static, 
{ fn inspect_json<'async_trait, T, E>(
        self,
        callback: C
    ) -> Pin<Box<dyn Future<Output = Result<T, E>> + Send + 'async_trait>>
    where
        T: for<'de> Deserialize<'de>,
        E: From<Error>,
        E: From<Error>,
        T: 'async_trait,
        E: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementations on Foreign Types

Implementors