pub enum Bolt11InvoiceDescription<'f> {
Direct(&'f Description),
Hash(&'f Sha256),
}
Expand description
Represents the description of an invoice which has to be either a directly included string or a hash of a description provided out of band.
This is not exported to bindings users as we don’t have a good way to map the reference lifetimes making this practically impossible to use safely in languages like C.
Variants§
Direct(&'f Description)
Reference to the directly supplied description in the invoice
Hash(&'f Sha256)
Reference to the description’s hash included in the invoice
Trait Implementations§
source§impl<'f> Clone for Bolt11InvoiceDescription<'f>
impl<'f> Clone for Bolt11InvoiceDescription<'f>
source§fn clone(&self) -> Bolt11InvoiceDescription<'f>
fn clone(&self) -> Bolt11InvoiceDescription<'f>
Returns a copy 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<'f> Debug for Bolt11InvoiceDescription<'f>
impl<'f> Debug for Bolt11InvoiceDescription<'f>
source§impl<'f> Display for Bolt11InvoiceDescription<'f>
impl<'f> Display for Bolt11InvoiceDescription<'f>
source§impl<'f> Ord for Bolt11InvoiceDescription<'f>
impl<'f> Ord for Bolt11InvoiceDescription<'f>
source§fn cmp(&self, other: &Bolt11InvoiceDescription<'f>) -> Ordering
fn cmp(&self, other: &Bolt11InvoiceDescription<'f>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<'f> PartialEq for Bolt11InvoiceDescription<'f>
impl<'f> PartialEq for Bolt11InvoiceDescription<'f>
source§fn eq(&self, other: &Bolt11InvoiceDescription<'f>) -> bool
fn eq(&self, other: &Bolt11InvoiceDescription<'f>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.source§impl<'f> PartialOrd for Bolt11InvoiceDescription<'f>
impl<'f> PartialOrd for Bolt11InvoiceDescription<'f>
impl<'f> Eq for Bolt11InvoiceDescription<'f>
impl<'f> StructuralPartialEq for Bolt11InvoiceDescription<'f>
Auto Trait Implementations§
impl<'f> Freeze for Bolt11InvoiceDescription<'f>
impl<'f> RefUnwindSafe for Bolt11InvoiceDescription<'f>
impl<'f> Send for Bolt11InvoiceDescription<'f>
impl<'f> Sync for Bolt11InvoiceDescription<'f>
impl<'f> Unpin for Bolt11InvoiceDescription<'f>
impl<'f> UnwindSafe for Bolt11InvoiceDescription<'f>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)