pub struct RawBolt11Invoice {
pub hrp: RawHrp,
pub data: RawDataPart,
}
Expand description
Represents an syntactically correct Bolt11Invoice
for a payment on the lightning network,
but without the signature information.
Decoding and encoding should not lead to information loss but may lead to different hashes.
For methods without docs see the corresponding methods in Bolt11Invoice
.
Fields§
§hrp: RawHrp
human readable part
data: RawDataPart
data part
Implementations§
Source§impl RawBolt11Invoice
impl RawBolt11Invoice
Sourcepub fn signable_hash(&self) -> [u8; 32]
pub fn signable_hash(&self) -> [u8; 32]
Calculate the hash of the encoded RawBolt11Invoice
which should be signed.
Sourcepub fn sign<F, E>(self, sign_method: F) -> Result<SignedRawBolt11Invoice, E>
pub fn sign<F, E>(self, sign_method: F) -> Result<SignedRawBolt11Invoice, E>
Signs the invoice using the supplied sign_method
. This function MAY fail with an error of
type E
. Since the signature of a SignedRawBolt11Invoice
is not required to be valid there
are no constraints regarding the validity of the produced signature.
This is not exported to bindings users as we don’t currently support passing function pointers into methods explicitly.
Sourcepub fn known_tagged_fields(
&self,
) -> FilterMap<Iter<'_, RawTaggedField>, fn(_: &RawTaggedField) -> Option<&TaggedField>>
pub fn known_tagged_fields( &self, ) -> FilterMap<Iter<'_, RawTaggedField>, fn(_: &RawTaggedField) -> Option<&TaggedField>>
Returns an iterator over all tagged fields with known semantics.
This is not exported to bindings users as there is not yet a manual mapping for a FilterMap
pub fn payment_hash(&self) -> Option<&Sha256>
pub fn description(&self) -> Option<&Description>
pub fn payee_pub_key(&self) -> Option<&PayeePubKey>
pub fn description_hash(&self) -> Option<&Sha256>
pub fn expiry_time(&self) -> Option<&ExpiryTime>
pub fn min_final_cltv_expiry_delta(&self) -> Option<&MinFinalCltvExpiryDelta>
pub fn payment_secret(&self) -> Option<&PaymentSecret>
pub fn payment_metadata(&self) -> Option<&Vec<u8>>
pub fn features(&self) -> Option<&Bolt11InvoiceFeatures>
Sourcepub fn fallbacks(&self) -> Vec<&Fallback>
pub fn fallbacks(&self) -> Vec<&Fallback>
This is not exported to bindings users as we don’t support Vec<&NonOpaqueType>
pub fn private_routes(&self) -> Vec<&PrivateRoute>
Sourcepub fn amount_pico_btc(&self) -> Option<u64>
pub fn amount_pico_btc(&self) -> Option<u64>
Returns None
if no amount is set or on overflow.
pub fn currency(&self) -> Currency
Trait Implementations§
Source§impl Clone for RawBolt11Invoice
impl Clone for RawBolt11Invoice
Source§fn clone(&self) -> RawBolt11Invoice
fn clone(&self) -> RawBolt11Invoice
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more