pub struct SparkCreateLightningInvoiceRpcResponse {
pub data: Option<SparkLightningReceiveRequest>,
pub method: SparkCreateLightningInvoiceRpcResponseMethod,
}Expand description
Response to the Spark createLightningInvoice RPC.
JSON schema
{
"title": "SparkCreateLightningInvoiceRpcResponse",
"description": "Response to the Spark `createLightningInvoice` RPC.",
"type": "object",
"required": [
"method"
],
"properties": {
"data": {
"$ref": "#/components/schemas/SparkLightningReceiveRequest"
},
"method": {
"type": "string",
"enum": [
"createLightningInvoice"
]
}
},
"x-stainless-model":
"wallets.spark_create_lightning_invoice_rpc_response"
}Fields§
§data: Option<SparkLightningReceiveRequest>§method: SparkCreateLightningInvoiceRpcResponseMethodTrait Implementations§
Source§impl Clone for SparkCreateLightningInvoiceRpcResponse
impl Clone for SparkCreateLightningInvoiceRpcResponse
Source§fn clone(&self) -> SparkCreateLightningInvoiceRpcResponse
fn clone(&self) -> SparkCreateLightningInvoiceRpcResponse
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 SparkCreateLightningInvoiceRpcResponse
impl<'de> Deserialize<'de> for SparkCreateLightningInvoiceRpcResponse
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<&SparkCreateLightningInvoiceRpcResponse> for SparkCreateLightningInvoiceRpcResponse
impl From<&SparkCreateLightningInvoiceRpcResponse> for SparkCreateLightningInvoiceRpcResponse
Source§fn from(value: &SparkCreateLightningInvoiceRpcResponse) -> Self
fn from(value: &SparkCreateLightningInvoiceRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SparkCreateLightningInvoiceRpcResponse> for SparkRpcResponse
impl From<SparkCreateLightningInvoiceRpcResponse> for SparkRpcResponse
Source§fn from(value: SparkCreateLightningInvoiceRpcResponse) -> Self
fn from(value: SparkCreateLightningInvoiceRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<SparkCreateLightningInvoiceRpcResponse> for WalletRpcResponse
impl From<SparkCreateLightningInvoiceRpcResponse> for WalletRpcResponse
Source§fn from(value: SparkCreateLightningInvoiceRpcResponse) -> Self
fn from(value: SparkCreateLightningInvoiceRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SparkCreateLightningInvoiceRpcResponse
impl RefUnwindSafe for SparkCreateLightningInvoiceRpcResponse
impl Send for SparkCreateLightningInvoiceRpcResponse
impl Sync for SparkCreateLightningInvoiceRpcResponse
impl Unpin for SparkCreateLightningInvoiceRpcResponse
impl UnsafeUnpin for SparkCreateLightningInvoiceRpcResponse
impl UnwindSafe for SparkCreateLightningInvoiceRpcResponse
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