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.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".