Trait InMemValTransaction

Source
pub trait InMemValTransaction: Sized {
    // Required method
    fn commit(self);
}

Required Methods§

Source

fn commit(self)

Commit the change to local memory value

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: InMemValTransaction> InMemValTransaction for Option<T>

Implementors§