pub struct InvoiceEnvelope {
pub v: String,
pub invoice_hash: String,
pub did: String,
pub price_msat: String,
pub resource: String,
pub expires_at: String,
pub nonce: String,
}Fields§
§v: String§invoice_hash: String§did: String§price_msat: String§resource: String§expires_at: String§nonce: StringTrait Implementations§
Source§impl Clone for InvoiceEnvelope
impl Clone for InvoiceEnvelope
Source§fn clone(&self) -> InvoiceEnvelope
fn clone(&self) -> InvoiceEnvelope
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 InvoiceEnvelope
impl Debug for InvoiceEnvelope
Source§impl<'de> Deserialize<'de> for InvoiceEnvelope
impl<'de> Deserialize<'de> for InvoiceEnvelope
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 InvoiceEnvelope
impl RefUnwindSafe for InvoiceEnvelope
impl Send for InvoiceEnvelope
impl Sync for InvoiceEnvelope
impl Unpin for InvoiceEnvelope
impl UnsafeUnpin for InvoiceEnvelope
impl UnwindSafe for InvoiceEnvelope
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