pub trait DataInitializerLocationLike {
    // Required methods
    fn memory_index(&self) -> MemoryIndex;
    fn base(&self) -> Option<GlobalIndex>;
    fn offset(&self) -> usize;
}Expand description
Any struct that acts like a DataInitializerLocation.