Struct switchboard_evm::bindings::switchboard::switchboard::CallFunctionCall
source · pub struct CallFunctionCall {
pub function_id: Address,
pub params: Bytes,
}Expand description
Container type for all input parameters for the callFunction function with signature callFunction(address,bytes) and selector 0x9c23da50
Fields§
§function_id: Address§params: BytesTrait Implementations§
source§impl AbiDecode for CallFunctionCall
impl AbiDecode for CallFunctionCall
source§impl AbiEncode for CallFunctionCall
impl AbiEncode for CallFunctionCall
source§impl AbiType for CallFunctionCall
impl AbiType for CallFunctionCall
source§fn param_type() -> ParamType
fn param_type() -> ParamType
The native ABI type this type represents.
§fn minimum_size() -> usize
fn minimum_size() -> usize
A hint of the minimum number of bytes this type takes up in the ABI.
source§impl Clone for CallFunctionCall
impl Clone for CallFunctionCall
source§fn clone(&self) -> CallFunctionCall
fn clone(&self) -> CallFunctionCall
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CallFunctionCall
impl Debug for CallFunctionCall
source§impl Default for CallFunctionCall
impl Default for CallFunctionCall
source§fn default() -> CallFunctionCall
fn default() -> CallFunctionCall
Returns the “default value” for a type. Read more
source§impl Display for CallFunctionCall
impl Display for CallFunctionCall
source§impl EthCall for CallFunctionCall
impl EthCall for CallFunctionCall
source§impl From<CallFunctionCall> for SwitchboardCalls
impl From<CallFunctionCall> for SwitchboardCalls
source§fn from(value: CallFunctionCall) -> Self
fn from(value: CallFunctionCall) -> Self
Converts to this type from the input type.
source§impl Hash for CallFunctionCall
impl Hash for CallFunctionCall
source§impl PartialEq<CallFunctionCall> for CallFunctionCall
impl PartialEq<CallFunctionCall> for CallFunctionCall
source§fn eq(&self, other: &CallFunctionCall) -> bool
fn eq(&self, other: &CallFunctionCall) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Tokenizable for CallFunctionCallwhere
Address: Tokenize,
Bytes: Tokenize,
impl Tokenizable for CallFunctionCallwhere Address: Tokenize, Bytes: Tokenize,
source§fn from_token(token: Token) -> Result<Self, InvalidOutputType>
fn from_token(token: Token) -> Result<Self, InvalidOutputType>
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 CallFunctionCall
impl Eq for CallFunctionCall
impl StructuralEq for CallFunctionCall
impl StructuralPartialEq for CallFunctionCall
impl TokenizableItem for CallFunctionCallwhere Address: Tokenize, Bytes: Tokenize,
Auto Trait Implementations§
impl RefUnwindSafe for CallFunctionCall
impl Send for CallFunctionCall
impl Sync for CallFunctionCall
impl Unpin for CallFunctionCall
impl UnwindSafe for CallFunctionCall
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
§impl<T> Detokenize for Twhere
T: Tokenizable,
impl<T> Detokenize for Twhere T: Tokenizable,
§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.§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> Tokenize for Twhere
T: Tokenizable,
impl<T> Tokenize for Twhere T: Tokenizable,
§fn into_tokens(self) -> Vec<Token, Global>
fn into_tokens(self) -> Vec<Token, Global>
Converts
self into a Vec<Token>.