pub trait DataTarget:
Sync
+ Send
+ 'static {
type Row;
// Required method
fn save<'life0, 'life1, 'async_trait>(
&'life0 self,
row: &'life1 Self::Row,
) -> Pin<Box<dyn Future<Output = Result<(), Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Expand description
Tries to save a row.