pub struct SparkTransferLeaf {
pub intermediate_refund_tx: String,
pub leaf: Option<SparkWalletLeaf>,
pub secret_cipher: String,
pub signature: String,
}Expand description
A Spark transfer leaf.
JSON schema
{
"title": "SparkTransferLeaf",
"description": "A Spark transfer leaf.",
"type": "object",
"required": [
"intermediate_refund_tx",
"secret_cipher",
"signature"
],
"properties": {
"intermediate_refund_tx": {
"type": "string"
},
"leaf": {
"$ref": "#/components/schemas/SparkWalletLeaf"
},
"secret_cipher": {
"type": "string"
},
"signature": {
"type": "string"
}
},
"x-stainless-model": "wallets.spark_transfer_leaf"
}Fields§
§intermediate_refund_tx: String§leaf: Option<SparkWalletLeaf>§secret_cipher: String§signature: StringTrait Implementations§
Source§impl Clone for SparkTransferLeaf
impl Clone for SparkTransferLeaf
Source§fn clone(&self) -> SparkTransferLeaf
fn clone(&self) -> SparkTransferLeaf
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 Debug for SparkTransferLeaf
impl Debug for SparkTransferLeaf
Source§impl<'de> Deserialize<'de> for SparkTransferLeaf
impl<'de> Deserialize<'de> for SparkTransferLeaf
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<&SparkTransferLeaf> for SparkTransferLeaf
impl From<&SparkTransferLeaf> for SparkTransferLeaf
Source§fn from(value: &SparkTransferLeaf) -> Self
fn from(value: &SparkTransferLeaf) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SparkTransferLeaf
impl RefUnwindSafe for SparkTransferLeaf
impl Send for SparkTransferLeaf
impl Sync for SparkTransferLeaf
impl Unpin for SparkTransferLeaf
impl UnsafeUnpin for SparkTransferLeaf
impl UnwindSafe for SparkTransferLeaf
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