Trait StorageLayout

Source
pub trait StorageLayout {
    // Required method
    fn layout(key: &Key) -> Layout;
}
Expand description

Implemented by types that have a storage layout.

Required Methods§

Source

fn layout(key: &Key) -> Layout

Returns the static storage layout of Self.

The given storage key is guiding the allocation of static fields onto the contract storage regions.

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.

Implementations on Foreign Types§

Source§

impl StorageLayout for bool

Source§

impl StorageLayout for char

Source§

impl StorageLayout for i8

Source§

impl StorageLayout for i16

Source§

impl StorageLayout for i32

Source§

impl StorageLayout for i64

Source§

impl StorageLayout for i128

Source§

impl StorageLayout for u8

Source§

impl StorageLayout for u16

Source§

impl StorageLayout for u32

Source§

impl StorageLayout for u64

Source§

impl StorageLayout for u128

Source§

impl StorageLayout for ()

Source§

impl StorageLayout for AccountId

Source§

impl StorageLayout for Address

Source§

impl StorageLayout for Hash

Source§

impl StorageLayout for String

Source§

impl StorageLayout for H160

Source§

impl StorageLayout for H256

Source§

impl StorageLayout for U256

Source§

impl<A> StorageLayout for (A,)
where A: StorageLayout,

Source§

impl<A, B> StorageLayout for (A, B)

Source§

impl<A, B, C> StorageLayout for (A, B, C)

Source§

impl<A, B, C, D> StorageLayout for (A, B, C, D)

Source§

impl<A, B, C, D, E> StorageLayout for (A, B, C, D, E)

Source§

impl<A, B, C, D, E, F> StorageLayout for (A, B, C, D, E, F)

Source§

impl<A, B, C, D, E, F, G> StorageLayout for (A, B, C, D, E, F, G)

Source§

impl<A, B, C, D, E, F, G, H> StorageLayout for (A, B, C, D, E, F, G, H)

Source§

impl<A, B, C, D, E, F, G, H, I> StorageLayout for (A, B, C, D, E, F, G, H, I)

Source§

impl<A, B, C, D, E, F, G, H, I, J> StorageLayout for (A, B, C, D, E, F, G, H, I, J)

Source§

impl<K, V> StorageLayout for BTreeMap<K, V>
where K: TypeInfo + 'static + Packed, V: TypeInfo + 'static + Packed,

Source§

impl<T> StorageLayout for Option<T>
where T: StorageLayout,

Source§

impl<T> StorageLayout for Box<T>
where T: StorageLayout,

Source§

impl<T> StorageLayout for BTreeSet<T>
where T: TypeInfo + 'static + Packed,

Source§

impl<T> StorageLayout for VecDeque<T>
where T: TypeInfo + 'static + Packed,

Source§

impl<T> StorageLayout for Vec<T>
where T: TypeInfo + 'static + Packed,

Source§

impl<T, E> StorageLayout for Result<T, E>

Source§

impl<T, const N: usize> StorageLayout for [T; N]
where T: StorageLayout + Packed,

Implementors§