pub trait ResponseWriter: Sized {
    fn write_response<'life0, 'async_trait, R>(
        self,
        response: &'life0 Response<R>
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'async_trait>>
    where
        R: 'async_trait + Serialize,
        'life0: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors