pub trait IntoStorageKey {
// Required method
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
.
More information about storage is in NEAR documentation.