Struct ethers_core::abi::Component
source · pub struct Component {
pub internal_type: Option<String>,
pub name: String,
pub type_field: String,
pub components: Vec<Component>,
pub indexed: Option<bool>,
}Expand description
Either an input/output or a nested component of an input/output
Fields§
§internal_type: Option<String>§name: String§type_field: String§components: Vec<Component>§indexed: Option<bool>Indexed flag. for solidity events
Trait Implementations§
source§impl<'de> Deserialize<'de> for Component
impl<'de> Deserialize<'de> for Component
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