pub struct SparkSignMessageWithIdentityKeyRpcResponse {
pub data: Option<SparkSignMessageWithIdentityKeyRpcResponseData>,
pub method: SparkSignMessageWithIdentityKeyRpcResponseMethod,
}Expand description
Response to the Spark signMessageWithIdentityKey RPC.
JSON schema
{
"title": "SparkSignMessageWithIdentityKeyRpcResponse",
"description": "Response to the Spark `signMessageWithIdentityKey`
RPC.",
"type": "object",
"required": [
"method"
],
"properties": {
"data": {
"$ref":
"#/components/schemas/SparkSignMessageWithIdentityKeyRpcResponseData"
},
"method": {
"type": "string",
"enum": [
"signMessageWithIdentityKey"
]
}
},
"x-stainless-model":
"wallets.spark_sign_message_with_identity_key_rpc_response"
}Fields§
§data: Option<SparkSignMessageWithIdentityKeyRpcResponseData>§method: SparkSignMessageWithIdentityKeyRpcResponseMethodTrait Implementations§
Source§impl Clone for SparkSignMessageWithIdentityKeyRpcResponse
impl Clone for SparkSignMessageWithIdentityKeyRpcResponse
Source§fn clone(&self) -> SparkSignMessageWithIdentityKeyRpcResponse
fn clone(&self) -> SparkSignMessageWithIdentityKeyRpcResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SparkSignMessageWithIdentityKeyRpcResponse
impl<'de> Deserialize<'de> for SparkSignMessageWithIdentityKeyRpcResponse
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<&SparkSignMessageWithIdentityKeyRpcResponse> for SparkSignMessageWithIdentityKeyRpcResponse
impl From<&SparkSignMessageWithIdentityKeyRpcResponse> for SparkSignMessageWithIdentityKeyRpcResponse
Source§fn from(value: &SparkSignMessageWithIdentityKeyRpcResponse) -> Self
fn from(value: &SparkSignMessageWithIdentityKeyRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SparkSignMessageWithIdentityKeyRpcResponse> for SparkRpcResponse
impl From<SparkSignMessageWithIdentityKeyRpcResponse> for SparkRpcResponse
Source§fn from(value: SparkSignMessageWithIdentityKeyRpcResponse) -> Self
fn from(value: SparkSignMessageWithIdentityKeyRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SparkSignMessageWithIdentityKeyRpcResponse> for WalletRpcResponse
impl From<SparkSignMessageWithIdentityKeyRpcResponse> for WalletRpcResponse
Source§fn from(value: SparkSignMessageWithIdentityKeyRpcResponse) -> Self
fn from(value: SparkSignMessageWithIdentityKeyRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SparkSignMessageWithIdentityKeyRpcResponse
impl RefUnwindSafe for SparkSignMessageWithIdentityKeyRpcResponse
impl Send for SparkSignMessageWithIdentityKeyRpcResponse
impl Sync for SparkSignMessageWithIdentityKeyRpcResponse
impl Unpin for SparkSignMessageWithIdentityKeyRpcResponse
impl UnsafeUnpin for SparkSignMessageWithIdentityKeyRpcResponse
impl UnwindSafe for SparkSignMessageWithIdentityKeyRpcResponse
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