pub struct EthereumSendCallsRpcResponse {
pub data: EthereumSendCallsRpcResponseData,
pub method: EthereumSendCallsRpcResponseMethod,
}Expand description
Response to the wallet_sendCalls RPC.
JSON schema
{
"title": "EthereumSendCallsRpcResponse",
"description": "Response to the `wallet_sendCalls` RPC.",
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"$ref": "#/components/schemas/EthereumSendCallsRpcResponseData"
},
"method": {
"type": "string",
"enum": [
"wallet_sendCalls"
]
}
},
"x-stainless-model": "wallets.ethereum_send_calls_rpc_response"
}Fields§
§data: EthereumSendCallsRpcResponseData§method: EthereumSendCallsRpcResponseMethodTrait Implementations§
Source§impl Clone for EthereumSendCallsRpcResponse
impl Clone for EthereumSendCallsRpcResponse
Source§fn clone(&self) -> EthereumSendCallsRpcResponse
fn clone(&self) -> EthereumSendCallsRpcResponse
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 Debug for EthereumSendCallsRpcResponse
impl Debug for EthereumSendCallsRpcResponse
Source§impl<'de> Deserialize<'de> for EthereumSendCallsRpcResponse
impl<'de> Deserialize<'de> for EthereumSendCallsRpcResponse
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<&EthereumSendCallsRpcResponse> for EthereumSendCallsRpcResponse
impl From<&EthereumSendCallsRpcResponse> for EthereumSendCallsRpcResponse
Source§fn from(value: &EthereumSendCallsRpcResponse) -> Self
fn from(value: &EthereumSendCallsRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<EthereumSendCallsRpcResponse> for EthereumRpcResponse
impl From<EthereumSendCallsRpcResponse> for EthereumRpcResponse
Source§fn from(value: EthereumSendCallsRpcResponse) -> Self
fn from(value: EthereumSendCallsRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<EthereumSendCallsRpcResponse> for WalletRpcResponse
impl From<EthereumSendCallsRpcResponse> for WalletRpcResponse
Source§fn from(value: EthereumSendCallsRpcResponse) -> Self
fn from(value: EthereumSendCallsRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSendCallsRpcResponse
impl RefUnwindSafe for EthereumSendCallsRpcResponse
impl Send for EthereumSendCallsRpcResponse
impl Sync for EthereumSendCallsRpcResponse
impl Unpin for EthereumSendCallsRpcResponse
impl UnsafeUnpin for EthereumSendCallsRpcResponse
impl UnwindSafe for EthereumSendCallsRpcResponse
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