pub trait AllStoragesBorrow<'a>: Borrow<'a> {
    fn all_borrow(
        all_storages: &'a AllStorages
    ) -> Result<Self::View, GetStorage>; }
Expand description

Allows a type to be borrowed by AllStorages::borrow and AllStorages::run.

Required Methods

This function is where the actual borrowing happens.

Implementations on Foreign Types

Implementors