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§
Sourcefn into_transaction(self) -> StorageTransaction<Self>
fn into_transaction(self) -> StorageTransaction<Self>
Converts the type into the storage transaction consuming it.
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.