risingwave_meta::modelTrait Transactional
source pub trait Transactional<TXN> {
// Required methods
fn upsert_in_transaction<'life0, 'life1, 'async_trait>(
&'life0 self,
trx: &'life1 mut TXN,
) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn delete_in_transaction<'life0, 'life1, 'async_trait>(
&'life0 self,
trx: &'life1 mut TXN,
) -> Pin<Box<dyn Future<Output = MetadataModelResult<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}