pub struct SolanaSignMessageRpcResponse {
pub data: SolanaSignMessageRpcResponseData,
pub method: SolanaSignMessageRpcResponseMethod,
}Expand description
SolanaSignMessageRpcResponse
JSON schema
{
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"type": "object",
"required": [
"encoding",
"signature"
],
"properties": {
"encoding": {
"type": "string",
"enum": [
"base64"
]
},
"signature": {
"type": "string"
}
}
},
"method": {
"type": "string",
"enum": [
"signMessage"
]
}
}
}Fields§
§data: SolanaSignMessageRpcResponseData§method: SolanaSignMessageRpcResponseMethodTrait Implementations§
Source§impl Clone for SolanaSignMessageRpcResponse
impl Clone for SolanaSignMessageRpcResponse
Source§fn clone(&self) -> SolanaSignMessageRpcResponse
fn clone(&self) -> SolanaSignMessageRpcResponse
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 Debug for SolanaSignMessageRpcResponse
impl Debug for SolanaSignMessageRpcResponse
Source§impl<'de> Deserialize<'de> for SolanaSignMessageRpcResponse
impl<'de> Deserialize<'de> for SolanaSignMessageRpcResponse
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<&SolanaSignMessageRpcResponse> for SolanaSignMessageRpcResponse
impl From<&SolanaSignMessageRpcResponse> for SolanaSignMessageRpcResponse
Source§fn from(value: &SolanaSignMessageRpcResponse) -> Self
fn from(value: &SolanaSignMessageRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SolanaSignMessageRpcResponse> for WalletRpcResponse
impl From<SolanaSignMessageRpcResponse> for WalletRpcResponse
Source§fn from(value: SolanaSignMessageRpcResponse) -> Self
fn from(value: SolanaSignMessageRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SolanaSignMessageRpcResponse
impl RefUnwindSafe for SolanaSignMessageRpcResponse
impl Send for SolanaSignMessageRpcResponse
impl Sync for SolanaSignMessageRpcResponse
impl Unpin for SolanaSignMessageRpcResponse
impl UnwindSafe for SolanaSignMessageRpcResponse
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