pub trait KeyValueDbAsAnyTrait: KeyValueDbTypes {
    // Required method
    fn as_any(&self) -> &dyn Any;
}
Expand description

This trait is to help with the committing of the transaction for which the db object should be provided for serialization.

Required Methods§

source

fn as_any(&self) -> &dyn Any

Implementors§