pub trait StorageSlots {
    fn storage_slots(&self) -> &Vec<StorageSlot>;
    fn storage_slots_mut(&mut self) -> &mut Vec<StorageSlot>;
    fn storage_slots_offset_static() -> usize;
    fn storage_slots_offset_at(&self, idx: usize) -> Option<usize>;

    fn storage_slots_offset(&self) -> usize { ... }
}

Required Methods

Returns the offset to the StorageSlot at idx index, if any.

Provided Methods

Implementors