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> 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
This method 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>
source§fn partial_cmp(&self, other: &Bolt11InvoiceDescription<'f>) -> Option<Ordering>
fn partial_cmp(&self, other: &Bolt11InvoiceDescription<'f>) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl<'f> Eq for Bolt11InvoiceDescription<'f>
impl<'f> StructuralEq for Bolt11InvoiceDescription<'f>
impl<'f> StructuralPartialEq for Bolt11InvoiceDescription<'f>
Auto Trait Implementations§
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