pub struct SparkSignMessageWithIdentityKeyRpcInputParams {
pub compact: Option<bool>,
pub message: String,
}Expand description
Parameters for the Spark signMessageWithIdentityKey RPC.
JSON schema
{
"title": "SparkSignMessageWithIdentityKeyRpcInputParams",
"description": "Parameters for the Spark `signMessageWithIdentityKey`
RPC.",
"type": "object",
"required": [
"message"
],
"properties": {
"compact": {
"type": "boolean"
},
"message": {
"type": "string"
}
},
"x-stainless-model":
"wallets.spark_sign_message_with_identity_key_rpc_input_params"
}Fields§
§compact: Option<bool>§message: StringTrait Implementations§
Source§impl Clone for SparkSignMessageWithIdentityKeyRpcInputParams
impl Clone for SparkSignMessageWithIdentityKeyRpcInputParams
Source§fn clone(&self) -> SparkSignMessageWithIdentityKeyRpcInputParams
fn clone(&self) -> SparkSignMessageWithIdentityKeyRpcInputParams
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 SparkSignMessageWithIdentityKeyRpcInputParams
impl<'de> Deserialize<'de> for SparkSignMessageWithIdentityKeyRpcInputParams
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<&SparkSignMessageWithIdentityKeyRpcInputParams> for SparkSignMessageWithIdentityKeyRpcInputParams
impl From<&SparkSignMessageWithIdentityKeyRpcInputParams> for SparkSignMessageWithIdentityKeyRpcInputParams
Source§fn from(value: &SparkSignMessageWithIdentityKeyRpcInputParams) -> Self
fn from(value: &SparkSignMessageWithIdentityKeyRpcInputParams) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SparkSignMessageWithIdentityKeyRpcInputParams
impl RefUnwindSafe for SparkSignMessageWithIdentityKeyRpcInputParams
impl Send for SparkSignMessageWithIdentityKeyRpcInputParams
impl Sync for SparkSignMessageWithIdentityKeyRpcInputParams
impl Unpin for SparkSignMessageWithIdentityKeyRpcInputParams
impl UnsafeUnpin for SparkSignMessageWithIdentityKeyRpcInputParams
impl UnwindSafe for SparkSignMessageWithIdentityKeyRpcInputParams
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