Trait tc_collection::table::TableWrite
source · pub trait TableWrite: TableInstance {
// Required methods
fn delete<'life0, 'async_trait>(
&'life0 self,
txn_id: TxnId,
key: Vec<Value>
) -> Pin<Box<dyn Future<Output = TCResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn upsert<'life0, 'async_trait>(
&'life0 self,
txn_id: TxnId,
key: Vec<Value>,
values: Vec<Value>
) -> Pin<Box<dyn Future<Output = TCResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Table write methods