Trait near_sdk::IntoStorageKey[][src]

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

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

Required methods

Loading content...

Implementations on Foreign Types

impl IntoStorageKey for Vec<u8>[src]

impl<'a> IntoStorageKey for &'a [u8][src]

impl<'a> IntoStorageKey for &'a [u8; 1][src]

impl IntoStorageKey for u8[src]

Loading content...

Implementors

impl<T> IntoStorageKey for T where
    T: BorshIntoStorageKey
[src]

Loading content...