pub struct ParsedInvoice {
pub payment_hash: String,
pub amount_msat: u64,
pub expiry_at: Option<DateTime<Utc>>,
}Fields§
§payment_hash: String§amount_msat: u64§expiry_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl Clone for ParsedInvoice
impl Clone for ParsedInvoice
Source§fn clone(&self) -> ParsedInvoice
fn clone(&self) -> ParsedInvoice
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 moreAuto Trait Implementations§
impl Freeze for ParsedInvoice
impl RefUnwindSafe for ParsedInvoice
impl Send for ParsedInvoice
impl Sync for ParsedInvoice
impl Unpin for ParsedInvoice
impl UnsafeUnpin for ParsedInvoice
impl UnwindSafe for ParsedInvoice
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