Struct InvoiceRequestBuilder
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<T> AnySync for T
 
impl<T> AnySync for T
§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> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
 
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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