pub struct EthereumSignUserOperationRpcResponse {
pub data: EthereumSignUserOperationRpcResponseData,
pub method: EthereumSignUserOperationRpcResponseMethod,
}Expand description
Response to the EVM eth_signUserOperation RPC.
JSON schema
{
"title": "EthereumSignUserOperationRpcResponse",
"description": "Response to the EVM `eth_signUserOperation` RPC.",
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"type": "object",
"required": [
"encoding",
"signature"
],
"properties": {
"encoding": {
"type": "string",
"enum": [
"hex"
]
},
"signature": {
"type": "string"
}
}
},
"method": {
"type": "string",
"enum": [
"eth_signUserOperation"
]
}
},
"x-stainless-model":
"wallets.ethereum_sign_user_operation_rpc_response"
}Fields§
§data: EthereumSignUserOperationRpcResponseData§method: EthereumSignUserOperationRpcResponseMethodTrait Implementations§
Source§impl Clone for EthereumSignUserOperationRpcResponse
impl Clone for EthereumSignUserOperationRpcResponse
Source§fn clone(&self) -> EthereumSignUserOperationRpcResponse
fn clone(&self) -> EthereumSignUserOperationRpcResponse
Returns a duplicate 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<'de> Deserialize<'de> for EthereumSignUserOperationRpcResponse
impl<'de> Deserialize<'de> for EthereumSignUserOperationRpcResponse
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<&EthereumSignUserOperationRpcResponse> for EthereumSignUserOperationRpcResponse
impl From<&EthereumSignUserOperationRpcResponse> for EthereumSignUserOperationRpcResponse
Source§fn from(value: &EthereumSignUserOperationRpcResponse) -> Self
fn from(value: &EthereumSignUserOperationRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<EthereumSignUserOperationRpcResponse> for RpcIntentResponseActionResultResponseBody
impl From<EthereumSignUserOperationRpcResponse> for RpcIntentResponseActionResultResponseBody
Source§fn from(value: EthereumSignUserOperationRpcResponse) -> Self
fn from(value: EthereumSignUserOperationRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<EthereumSignUserOperationRpcResponse> for WalletRpcResponse
impl From<EthereumSignUserOperationRpcResponse> for WalletRpcResponse
Source§fn from(value: EthereumSignUserOperationRpcResponse) -> Self
fn from(value: EthereumSignUserOperationRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EthereumSignUserOperationRpcResponse
impl RefUnwindSafe for EthereumSignUserOperationRpcResponse
impl Send for EthereumSignUserOperationRpcResponse
impl Sync for EthereumSignUserOperationRpcResponse
impl Unpin for EthereumSignUserOperationRpcResponse
impl UnsafeUnpin for EthereumSignUserOperationRpcResponse
impl UnwindSafe for EthereumSignUserOperationRpcResponse
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