pub struct EthereumSendCallsRpcInputParams {
pub calls: Vec<EthereumSendCallsCall>,
}Expand description
Parameters for the wallet_sendCalls RPC.
JSON schema
{
"title": "EthereumSendCallsRpcInputParams",
"description": "Parameters for the `wallet_sendCalls` RPC.",
"type": "object",
"required": [
"calls"
],
"properties": {
"calls": {
"type": "array",
"items": {
"$ref": "#/components/schemas/EthereumSendCallsCall"
},
"maxItems": 35,
"minItems": 1
}
},
"x-stainless-model": "wallets.ethereum_send_calls_rpc_input_params"
}Fields§
§calls: Vec<EthereumSendCallsCall>Trait Implementations§
Source§impl Clone for EthereumSendCallsRpcInputParams
impl Clone for EthereumSendCallsRpcInputParams
Source§fn clone(&self) -> EthereumSendCallsRpcInputParams
fn clone(&self) -> EthereumSendCallsRpcInputParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for EthereumSendCallsRpcInputParams
impl<'de> Deserialize<'de> for EthereumSendCallsRpcInputParams
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
Source§impl From<&EthereumSendCallsRpcInputParams> for EthereumSendCallsRpcInputParams
impl From<&EthereumSendCallsRpcInputParams> for EthereumSendCallsRpcInputParams
Source§fn from(value: &EthereumSendCallsRpcInputParams) -> Self
fn from(value: &EthereumSendCallsRpcInputParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSendCallsRpcInputParams
impl RefUnwindSafe for EthereumSendCallsRpcInputParams
impl Send for EthereumSendCallsRpcInputParams
impl Sync for EthereumSendCallsRpcInputParams
impl Unpin for EthereumSendCallsRpcInputParams
impl UnsafeUnpin for EthereumSendCallsRpcInputParams
impl UnwindSafe for EthereumSendCallsRpcInputParams
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