pub type SerializedStorageKey<'a> = Cow<'a, str>;
pub enum SerializedStorageKey<'a> { Borrowed(&'a str), Owned(String), }
Borrowed data.
Owned data.