Struct InvoiceRequestBuilder
pub struct InvoiceRequestBuilder<'a, 'b, T>where
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, T> InvoiceRequestBuilder<'a, 'b, T>where
T: Signing,
impl<'a, 'b, T> InvoiceRequestBuilder<'a, 'b, 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.
pub fn chain(
self,
network: Network,
) -> Result<InvoiceRequestBuilder<'a, 'b, T>, Bolt12SemanticError>
pub fn chain( self, network: Network, ) -> Result<InvoiceRequestBuilder<'a, 'b, 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, T>, Bolt12SemanticError>
pub fn amount_msats( self, amount_msats: u64, ) -> Result<InvoiceRequestBuilder<'a, 'b, 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, T>, Bolt12SemanticError>
pub fn quantity( self, quantity: u64, ) -> Result<InvoiceRequestBuilder<'a, 'b, 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, T>
pub fn payer_note(self, payer_note: String) -> InvoiceRequestBuilder<'a, 'b, T>
Sets the InvoiceRequest::payer_note.
Successive calls to this method will override the previous setting.
pub fn sourced_from_human_readable_name(
self,
hrn: HumanReadableName,
) -> InvoiceRequestBuilder<'a, 'b, T>
pub fn sourced_from_human_readable_name( self, hrn: HumanReadableName, ) -> InvoiceRequestBuilder<'a, 'b, T>
Sets the InvoiceRequest::offer_from_hrn.
Successive calls to this method will override the previous setting.
Auto Trait Implementations§
impl<'a, 'b, T> Freeze for InvoiceRequestBuilder<'a, 'b, T>
impl<'a, 'b, T> RefUnwindSafe for InvoiceRequestBuilder<'a, 'b, T>where
T: RefUnwindSafe,
impl<'a, 'b, T> Send for InvoiceRequestBuilder<'a, 'b, T>
impl<'a, 'b, T> Sync for InvoiceRequestBuilder<'a, 'b, T>
impl<'a, 'b, T> Unpin for InvoiceRequestBuilder<'a, 'b, T>
impl<'a, 'b, T> UnwindSafe for InvoiceRequestBuilder<'a, 'b, T>where
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