pub trait StorageSlots {
// Required methods
fn storage_slots(&self) -> &Vec<StorageSlot>;
fn storage_slots_mut(&mut self) -> StorageSlotRef<'_>;
fn storage_slots_offset_static() -> usize;
fn storage_slots_offset_at(&self, idx: usize) -> Option<usize>;
}
Required Methods§
fn storage_slots(&self) -> &Vec<StorageSlot>
fn storage_slots_mut(&mut self) -> StorageSlotRef<'_>
fn storage_slots_offset_static() -> usize
sourcefn storage_slots_offset_at(&self, idx: usize) -> Option<usize>
fn storage_slots_offset_at(&self, idx: usize) -> Option<usize>
Returns the offset to the StorageSlot
at idx
index, if any.
Object Safety§
This trait is not object safe.