pub trait Transaction<'a, Error>:
DbTransactionFinalizer<Err = Error>
+ QuotesTransaction<'a, Err = Error>
+ SignaturesTransaction<'a, Err = Error>
+ ProofsTransaction<'a, Err = Error> {
// Required methods
fn set_quote_ttl<'life0, 'async_trait>(
&'life0 mut self,
quote_ttl: QuoteTTL,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn set_mint_info<'life0, 'async_trait>(
&'life0 mut self,
mint_info: MintInfo,
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Base database writer