[][src]Struct lightning_invoice::RawInvoice

pub struct RawInvoice {
    pub hrp: RawHrp,
    pub data: RawDataPart,
}

Represents an syntactically correct Invoice for a payment on the lightning network, but without the signature information. De- and encoding should not lead to information loss but may lead to different hashes.

For methods without docs see the corresponding methods in Invoice.

Fields

hrp: RawHrp

human readable part

data: RawDataPart

data part

Methods

impl RawInvoice
[src]

pub fn hash(&self) -> [u8; 32]
[src]

Calculate the hash of the encoded RawInvoice

pub fn sign<F, E>(self, sign_method: F) -> Result<SignedRawInvoice, E> where
    F: FnOnce(&Message) -> Result<RecoverableSignature, E>, 
[src]

Signs the invoice using the supplied sign_function. This function MAY fail with an error of type E. Since the signature of a SignedRawInvoice is not required to be valid there are no constraints regarding the validity of the produced signature.

pub fn known_tagged_fields(
    &self
) -> FilterMap<Iter<RawTaggedField>, fn(_: &RawTaggedField) -> Option<&TaggedField>>
[src]

Returns an iterator over all tagged fields with known semantics.

pub fn payment_hash(&self) -> Option<&Sha256>
[src]

pub fn description(&self) -> Option<&Description>
[src]

pub fn payee_pub_key(&self) -> Option<&PayeePubKey>
[src]

pub fn description_hash(&self) -> Option<&Sha256>
[src]

pub fn expiry_time(&self) -> Option<&ExpiryTime>
[src]

pub fn min_final_cltv_expiry(&self) -> Option<&MinFinalCltvExpiry>
[src]

pub fn fallbacks(&self) -> Vec<&Fallback>
[src]

pub fn routes(&self) -> Vec<&Route>
[src]

pub fn amount_pico_btc(&self) -> Option<u64>
[src]

pub fn currency(&self) -> Currency
[src]

Trait Implementations

impl Eq for RawInvoice
[src]

impl PartialEq<RawInvoice> for RawInvoice
[src]

impl Clone for RawInvoice
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for RawInvoice
[src]

Auto Trait Implementations

impl Send for RawInvoice

impl Sync for RawInvoice

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]