fuel_core_storage::transactional

Trait IntoTransaction

Source
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.

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.

Implementors§