Struct ethers_contract::multicall_contract::multicall_3::Call
source · pub struct Call {
pub target: Address,
pub call_data: Bytes,
}Available on crate feature
abigen only.Expand description
Call(address,bytes)
Fields§
§target: Address§call_data: BytesTrait Implementations§
source§impl AbiType for Call
impl AbiType for Call
source§fn param_type() -> ParamType
fn param_type() -> ParamType
The native ABI type this type represents.
source§impl PartialEq<Call> for Call
impl PartialEq<Call> for Call
source§impl Tokenizable for Callwhere
Address: Tokenize,
Bytes: Tokenize,
impl Tokenizable for Callwhere Address: Tokenize, Bytes: Tokenize,
source§fn from_token(token: Token) -> Result<Self, InvalidOutputType>where
Self: Sized,
fn from_token(token: Token) -> Result<Self, InvalidOutputType>where Self: Sized,
Converts a
Token into expected type.source§fn into_token(self) -> Token
fn into_token(self) -> Token
Converts a specified type back into token.
impl AbiArrayType for Call
impl Eq for Call
impl StructuralEq for Call
impl StructuralPartialEq for Call
impl TokenizableItem for Callwhere Address: Tokenize, Bytes: Tokenize,
Auto Trait Implementations§
impl RefUnwindSafe for Call
impl Send for Call
impl Sync for Call
impl Unpin for Call
impl UnwindSafe for Call
Blanket Implementations§
source§impl<T> Detokenize for Twhere
T: Tokenizable,
impl<T> Detokenize for Twhere T: Tokenizable,
source§fn from_tokens(tokens: Vec<Token, Global>) -> Result<T, InvalidOutputType>
fn from_tokens(tokens: Vec<Token, Global>) -> Result<T, InvalidOutputType>
Creates a new instance from parsed ABI tokens.
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.