pub struct EthereumSendCallsRpcResponseData {
pub caip2: Caip2,
pub transaction_id: String,
}Expand description
Data returned by the wallet_sendCalls RPC.
JSON schema
{
"title": "EthereumSendCallsRpcResponseData",
"description": "Data returned by the `wallet_sendCalls` RPC.",
"type": "object",
"required": [
"caip2",
"transaction_id"
],
"properties": {
"caip2": {
"$ref": "#/components/schemas/CAIP2"
},
"transaction_id": {
"type": "string"
}
},
"x-stainless-model": "wallets.ethereum_send_calls_rpc_response_data"
}Fields§
§caip2: Caip2§transaction_id: StringTrait Implementations§
Source§impl Clone for EthereumSendCallsRpcResponseData
impl Clone for EthereumSendCallsRpcResponseData
Source§fn clone(&self) -> EthereumSendCallsRpcResponseData
fn clone(&self) -> EthereumSendCallsRpcResponseData
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 EthereumSendCallsRpcResponseData
impl<'de> Deserialize<'de> for EthereumSendCallsRpcResponseData
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<&EthereumSendCallsRpcResponseData> for EthereumSendCallsRpcResponseData
impl From<&EthereumSendCallsRpcResponseData> for EthereumSendCallsRpcResponseData
Source§fn from(value: &EthereumSendCallsRpcResponseData) -> Self
fn from(value: &EthereumSendCallsRpcResponseData) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSendCallsRpcResponseData
impl RefUnwindSafe for EthereumSendCallsRpcResponseData
impl Send for EthereumSendCallsRpcResponseData
impl Sync for EthereumSendCallsRpcResponseData
impl Unpin for EthereumSendCallsRpcResponseData
impl UnsafeUnpin for EthereumSendCallsRpcResponseData
impl UnwindSafe for EthereumSendCallsRpcResponseData
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