Struct ethcontract::Contract
source · pub struct Contract {
pub name: String,
pub interface: Arc<Interface>,
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.
interface: Arc<Interface>The contract interface.
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<Contract, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Contract, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Serialize for Contract
impl Serialize for Contract
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for Contract
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