pub trait IntoStorageKey {
    fn into_storage_key(self) -> Vec<u8>;
}
Expand description

Converts Self into a Vec<u8> that is used for a storage key through into_storage_key.

Required methods

Consumes self and returns Vec<u8> bytes which are used as a storage key.

Implementations on Foreign Types

Implementors