pub trait StorageShape<I, T> {
    type Storage;
    // Required method
    fn get_by_idx(storage: &Self::Storage, idx: I) -> Option<&T>;
}pub trait StorageShape<I, T> {
    type Storage;
    // Required method
    fn get_by_idx(storage: &Self::Storage, idx: I) -> Option<&T>;
}