pub trait StorageView<'a> {
type StorageView;
// Required method
fn storage_view(&'a self) -> Self::StorageView;
}pub trait StorageView<'a> {
type StorageView;
// Required method
fn storage_view(&'a self) -> Self::StorageView;
}