Trait ValTransaction

Source
pub trait ValTransaction<TXN>: InMemValTransaction {
    // Required method
    async fn apply_to_txn(&self, txn: &mut TXN) -> MetadataModelResult<()>;
}
Expand description

Trait that wraps a local memory value and applies the change to the local memory value on commit or leaves the local memory value untouched on abort.

Required Methods§

Source

async fn apply_to_txn(&self, txn: &mut TXN) -> MetadataModelResult<()>

Apply the change (upsert or delete) to txn

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: ValTransaction<TXN>, TXN> ValTransaction<TXN> for Option<T>

Implementors§

Source§

impl<K: Ord + Debug, V: Transactional<TXN> + Clone, P: DerefMut<Target = BTreeMap<K, V>>, TXN> ValTransaction<TXN> for BTreeMapTransactionInner<K, V, P>

Source§

impl<K: Ord, V: PartialEq + Transactional<TXN>, TXN> ValTransaction<TXN> for BTreeMapEntryTransaction<'_, K, V>

Source§

impl<TXN> ValTransaction<TXN> for HummockVersionStatsTransaction<'_>
where HummockVersionStats: Transactional<TXN>,

Source§

impl<TXN> ValTransaction<TXN> for HummockVersionTransaction<'_>
where HummockVersionDelta: Transactional<TXN>, HummockVersionStats: Transactional<TXN>,

Source§

impl<TXN, T> ValTransaction<TXN> for VarTransaction<'_, T>
where T: Transactional<TXN> + PartialEq,