pub trait StorageKey: Key {
// Required method
fn storage_key(&self) -> String;
}Expand description
Encodes a subject key into a stable storage representation.
Required Methods§
Sourcefn storage_key(&self) -> String
fn storage_key(&self) -> String
Returns a stable string representation for storage backends.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".