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<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 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