pub struct SignInvoiceInput {
pub invoice_id: String,
pub signature: String,
pub recovery_id: i64,
}Fields§
§invoice_id: StringThe unique identifier of the invoice to be signed.
signature: StringThe cryptographic signature for the invoice.
recovery_id: i64The recovery identifier for the signature.
Trait Implementations§
Source§impl Clone for SignInvoiceInput
impl Clone for SignInvoiceInput
Source§fn clone(&self) -> SignInvoiceInput
fn clone(&self) -> SignInvoiceInput
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 SignInvoiceInput
impl Debug for SignInvoiceInput
Source§impl<'de> Deserialize<'de> for SignInvoiceInput
impl<'de> Deserialize<'de> for SignInvoiceInput
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
Auto Trait Implementations§
impl Freeze for SignInvoiceInput
impl RefUnwindSafe for SignInvoiceInput
impl Send for SignInvoiceInput
impl Sync for SignInvoiceInput
impl Unpin for SignInvoiceInput
impl UnwindSafe for SignInvoiceInput
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