pub struct SolanaSignTransactionRpcResponse {
pub data: SolanaSignTransactionRpcResponseData,
pub method: SolanaSignTransactionRpcResponseMethod,
}Expand description
SolanaSignTransactionRpcResponse
JSON schema
{
"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"
]
}
}
}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<SolanaSignTransactionRpcResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SolanaSignTransactionRpcResponse, <__D as Deserializer<'de>>::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,
) -> SolanaSignTransactionRpcResponse
fn from( value: &SolanaSignTransactionRpcResponse, ) -> SolanaSignTransactionRpcResponse
Converts to this type from the input type.
Source§impl From<SolanaSignTransactionRpcResponse> for WalletRpcResponse
impl From<SolanaSignTransactionRpcResponse> for WalletRpcResponse
Source§fn from(value: SolanaSignTransactionRpcResponse) -> WalletRpcResponse
fn from(value: SolanaSignTransactionRpcResponse) -> WalletRpcResponse
Converts to this type from the input type.
Source§impl Serialize for SolanaSignTransactionRpcResponse
impl Serialize for SolanaSignTransactionRpcResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for SolanaSignTransactionRpcResponse
impl RefUnwindSafe for SolanaSignTransactionRpcResponse
impl Send for SolanaSignTransactionRpcResponse
impl Sync for SolanaSignTransactionRpcResponse
impl Unpin 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