Struct ethcontract_common::contract::Contract
source · pub struct Contract {
pub name: String,
pub abi: Abi,
pub bytecode: Bytecode,
pub deployed_bytecode: Bytecode,
pub networks: HashMap<String, Network>,
pub devdoc: Documentation,
pub userdoc: Documentation,
}Expand description
Represents a contract data.
Fields§
§name: StringThe contract name. Unnamed contracts have an empty string as their name.
abi: AbiThe contract ABI
bytecode: BytecodeThe contract deployment bytecode.
deployed_bytecode: BytecodeThe contract’s expected deployed bytecode.
networks: HashMap<String, Network>The configured networks by network ID for the contract.
devdoc: DocumentationThe developer documentation.
userdoc: DocumentationThe user documentation.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Contract
impl<'de> Deserialize<'de> for Contract
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 RefUnwindSafe for Contract
impl Send for Contract
impl Sync for Contract
impl Unpin for Contract
impl UnwindSafe for Contract
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