Trait rbw::json::DeserializeJsonWithPathAsync

source ·
pub trait DeserializeJsonWithPathAsync {
    // Required method
    fn json_with_path<'async_trait, T>(
        self
    ) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
       where T: 'async_trait + DeserializeOwned,
             Self: 'async_trait;
}

Required Methods§

source

fn json_with_path<'async_trait, T>( self ) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where T: 'async_trait + DeserializeOwned, Self: 'async_trait,

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl DeserializeJsonWithPathAsync for Response

source§

fn json_with_path<'async_trait, T>( self ) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where T: 'async_trait + DeserializeOwned, Self: 'async_trait,

Implementors§