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