pub struct SolanaSignAndSendTransactionRpcResponse {
pub data: SolanaSignAndSendTransactionRpcResponseData,
pub method: SolanaSignAndSendTransactionRpcResponseMethod,
}Expand description
SolanaSignAndSendTransactionRpcResponse
JSON schema
{
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"type": "object",
"required": [
"caip2",
"hash"
],
"properties": {
"caip2": {
"type": "string",
"pattern": "^[-a-z0-9]{3,8}:[-_a-zA-Z0-9]{1,32}$"
},
"hash": {
"type": "string"
},
"transaction_id": {
"type": "string"
}
}
},
"method": {
"type": "string",
"enum": [
"signAndSendTransaction"
]
}
}
}Fields§
§data: SolanaSignAndSendTransactionRpcResponseData§method: SolanaSignAndSendTransactionRpcResponseMethodTrait Implementations§
Source§impl Clone for SolanaSignAndSendTransactionRpcResponse
impl Clone for SolanaSignAndSendTransactionRpcResponse
Source§fn clone(&self) -> SolanaSignAndSendTransactionRpcResponse
fn clone(&self) -> SolanaSignAndSendTransactionRpcResponse
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 SolanaSignAndSendTransactionRpcResponse
impl<'de> Deserialize<'de> for SolanaSignAndSendTransactionRpcResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SolanaSignAndSendTransactionRpcResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SolanaSignAndSendTransactionRpcResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&SolanaSignAndSendTransactionRpcResponse> for SolanaSignAndSendTransactionRpcResponse
impl From<&SolanaSignAndSendTransactionRpcResponse> for SolanaSignAndSendTransactionRpcResponse
Source§fn from(
value: &SolanaSignAndSendTransactionRpcResponse,
) -> SolanaSignAndSendTransactionRpcResponse
fn from( value: &SolanaSignAndSendTransactionRpcResponse, ) -> SolanaSignAndSendTransactionRpcResponse
Converts to this type from the input type.
Source§impl From<SolanaSignAndSendTransactionRpcResponse> for WalletRpcResponse
impl From<SolanaSignAndSendTransactionRpcResponse> for WalletRpcResponse
Source§fn from(value: SolanaSignAndSendTransactionRpcResponse) -> WalletRpcResponse
fn from(value: SolanaSignAndSendTransactionRpcResponse) -> WalletRpcResponse
Converts to this type from the input type.
Source§impl Serialize for SolanaSignAndSendTransactionRpcResponse
impl Serialize for SolanaSignAndSendTransactionRpcResponse
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 SolanaSignAndSendTransactionRpcResponse
impl RefUnwindSafe for SolanaSignAndSendTransactionRpcResponse
impl Send for SolanaSignAndSendTransactionRpcResponse
impl Sync for SolanaSignAndSendTransactionRpcResponse
impl Unpin for SolanaSignAndSendTransactionRpcResponse
impl UnwindSafe for SolanaSignAndSendTransactionRpcResponse
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