pub struct InvoiceRequestBuilder<'a, 'b, P, T>where
P: PayerIdStrategy,
T: Signing,{ /* private fields */ }
Expand description
Builds an InvoiceRequest
from an Offer
for the “offer to be paid” flow.
See module-level documentation for usage.
This is not exported to bindings users as builder patterns don’t map outside of move semantics.
Implementations§
§impl<'a, 'b, P, T> InvoiceRequestBuilder<'a, 'b, P, T>where
P: PayerIdStrategy,
T: Signing,
impl<'a, 'b, P, T> InvoiceRequestBuilder<'a, 'b, P, T>where
P: PayerIdStrategy,
T: Signing,
pub fn chain(
self,
network: Network,
) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
pub fn chain( self, network: Network, ) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
Sets the InvoiceRequest::chain
of the given Network
for paying an invoice. If not
called, Network::Bitcoin
is assumed. Errors if the chain for network
is not supported
by the offer.
Successive calls to this method will override the previous setting.
pub fn amount_msats(
self,
amount_msats: u64,
) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
pub fn amount_msats( self, amount_msats: u64, ) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
Sets the InvoiceRequest::amount_msats
for paying an invoice. Errors if amount_msats
is
not at least the expected invoice amount (i.e., Offer::amount
times quantity
).
Successive calls to this method will override the previous setting.
pub fn quantity(
self,
quantity: u64,
) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
pub fn quantity( self, quantity: u64, ) -> Result<InvoiceRequestBuilder<'a, 'b, P, T>, Bolt12SemanticError>
Sets InvoiceRequest::quantity
of items. If not set, 1
is assumed. Errors if quantity
does not conform to Offer::is_valid_quantity
.
Successive calls to this method will override the previous setting.
pub fn payer_note(
self,
payer_note: String,
) -> InvoiceRequestBuilder<'a, 'b, P, T>
pub fn payer_note( self, payer_note: String, ) -> InvoiceRequestBuilder<'a, 'b, P, T>
Sets the InvoiceRequest::payer_note
.
Successive calls to this method will override the previous setting.
§impl<'a, 'b, T> InvoiceRequestBuilder<'a, 'b, ExplicitPayerId, T>where
T: Signing,
impl<'a, 'b, T> InvoiceRequestBuilder<'a, 'b, ExplicitPayerId, T>where
T: Signing,
pub fn build(self) -> Result<UnsignedInvoiceRequest, Bolt12SemanticError>
pub fn build(self) -> Result<UnsignedInvoiceRequest, Bolt12SemanticError>
Builds an unsigned InvoiceRequest
after checking for valid semantics. It can be signed
by UnsignedInvoiceRequest::sign
.
§impl<'a, 'b, T> InvoiceRequestBuilder<'a, 'b, DerivedPayerId, T>where
T: Signing,
impl<'a, 'b, T> InvoiceRequestBuilder<'a, 'b, DerivedPayerId, T>where
T: Signing,
pub fn build_and_sign(self) -> Result<InvoiceRequest, Bolt12SemanticError>
pub fn build_and_sign(self) -> Result<InvoiceRequest, Bolt12SemanticError>
Builds a signed InvoiceRequest
after checking for valid semantics.
Auto Trait Implementations§
impl<'a, 'b, P, T> Freeze for InvoiceRequestBuilder<'a, 'b, P, T>
impl<'a, 'b, P, T> RefUnwindSafe for InvoiceRequestBuilder<'a, 'b, P, T>where
P: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, 'b, P, T> Send for InvoiceRequestBuilder<'a, 'b, P, T>where
P: Send,
impl<'a, 'b, P, T> Sync for InvoiceRequestBuilder<'a, 'b, P, T>where
P: Sync,
impl<'a, 'b, P, T> Unpin for InvoiceRequestBuilder<'a, 'b, P, T>where
P: Unpin,
impl<'a, 'b, P, T> UnwindSafe for InvoiceRequestBuilder<'a, 'b, P, T>where
P: UnwindSafe,
T: RefUnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request