pub trait IntoTransaction: Sized {
    // Required method
    fn into_transaction(self) -> StorageTransaction<Self>;
}
Expand description

The trait to convert the type into the storage transaction.

Required Methods§

source

fn into_transaction(self) -> StorageTransaction<Self>

Converts the type into the storage transaction consuming it.

Object Safety§

This trait is not object safe.

Implementors§