pub trait WriteDocumentBack {
type Error;
// Required method
fn write_document_back<'life0, 'life1, 'async_trait>(
&'life0 mut self,
doc: &'life1 DocumentMut,
) -> Pin<Box<dyn Future<Output = Result<(), Self::Error>> + Send + 'async_trait>>
where 'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
}