pub struct Symbols {
pub state: BTreeMap<String, u64>,
pub actions: BTreeMap<String, u32>,
}Expand description
Generated symbols of a contract
Fields§
§state: BTreeMap<String, u64>Fields and addresses (storage-keys) of the contract-state
actions: BTreeMap<String, u32>Method-names and method-ids of all actions
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Symbols
impl<'de> Deserialize<'de> for Symbols
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 Symbols
impl RefUnwindSafe for Symbols
impl Send for Symbols
impl Sync for Symbols
impl Unpin for Symbols
impl UnwindSafe for Symbols
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