pub struct StorageLayout {
pub slots: Vec<StorageSlot>,
pub mappings: Vec<MappingLayout>,
pub arrays: Vec<ArrayLayout>,
pub structs: Vec<StructLayout>,
}Fields§
§slots: Vec<StorageSlot>§mappings: Vec<MappingLayout>§arrays: Vec<ArrayLayout>§structs: Vec<StructLayout>Implementations§
Source§impl StorageLayout
impl StorageLayout
pub fn add_variable(&mut self, name: String, ty: Type, slot: u32)
Trait Implementations§
Source§impl Clone for StorageLayout
impl Clone for StorageLayout
Source§fn clone(&self) -> StorageLayout
fn clone(&self) -> StorageLayout
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StorageLayout
impl Debug for StorageLayout
Source§impl Default for StorageLayout
impl Default for StorageLayout
Source§fn default() -> StorageLayout
fn default() -> StorageLayout
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageLayout
impl<'de> Deserialize<'de> for StorageLayout
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StorageLayout
impl RefUnwindSafe for StorageLayout
impl Send for StorageLayout
impl Sync for StorageLayout
impl Unpin for StorageLayout
impl UnsafeUnpin for StorageLayout
impl UnwindSafe for StorageLayout
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more