pub struct SolanaSignTransactionRpcResponse {
pub data: SolanaSignTransactionRpcResponseData,
pub method: SolanaSignTransactionRpcResponseMethod,
}Expand description
Response to the SVM signTransaction RPC.
JSON schema
{
"title": "SolanaSignTransactionRpcResponse",
"description": "Response to the SVM `signTransaction` RPC.",
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"type": "object",
"required": [
"encoding",
"signed_transaction"
],
"properties": {
"encoding": {
"type": "string",
"enum": [
"base64"
]
},
"signed_transaction": {
"type": "string"
}
}
},
"method": {
"type": "string",
"enum": [
"signTransaction"
]
}
},
"x-stainless-model": "wallets.solana_sign_transaction_rpc_response"
}Fields§
§data: SolanaSignTransactionRpcResponseData§method: SolanaSignTransactionRpcResponseMethodTrait Implementations§
Source§impl Clone for SolanaSignTransactionRpcResponse
impl Clone for SolanaSignTransactionRpcResponse
Source§fn clone(&self) -> SolanaSignTransactionRpcResponse
fn clone(&self) -> SolanaSignTransactionRpcResponse
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 SolanaSignTransactionRpcResponse
impl<'de> Deserialize<'de> for SolanaSignTransactionRpcResponse
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<&SolanaSignTransactionRpcResponse> for SolanaSignTransactionRpcResponse
impl From<&SolanaSignTransactionRpcResponse> for SolanaSignTransactionRpcResponse
Source§fn from(value: &SolanaSignTransactionRpcResponse) -> Self
fn from(value: &SolanaSignTransactionRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SolanaSignTransactionRpcResponse> for RpcIntentResponseActionResultResponseBody
impl From<SolanaSignTransactionRpcResponse> for RpcIntentResponseActionResultResponseBody
Source§fn from(value: SolanaSignTransactionRpcResponse) -> Self
fn from(value: SolanaSignTransactionRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SolanaSignTransactionRpcResponse> for WalletRpcResponse
impl From<SolanaSignTransactionRpcResponse> for WalletRpcResponse
Source§fn from(value: SolanaSignTransactionRpcResponse) -> Self
fn from(value: SolanaSignTransactionRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SolanaSignTransactionRpcResponse
impl RefUnwindSafe for SolanaSignTransactionRpcResponse
impl Send for SolanaSignTransactionRpcResponse
impl Sync for SolanaSignTransactionRpcResponse
impl Unpin for SolanaSignTransactionRpcResponse
impl UnsafeUnpin for SolanaSignTransactionRpcResponse
impl UnwindSafe for SolanaSignTransactionRpcResponse
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