pub enum LnUrlWithdrawError {
Generic {
err: String,
},
InvalidAmount {
err: String,
},
InvalidInvoice {
err: String,
},
InvalidUri {
err: String,
},
InvoiceNoRoutingHints {
err: String,
},
ServiceConnectivity {
err: String,
},
}
Variants§
Generic
This error is raised when a general error occurs not specific to other error variants in this enum.
InvalidAmount
This error is raised when the amount is zero or the amount does not cover the cost to open a new channel.
InvalidInvoice
This error is raised when the lightning invoice cannot be parsed.
InvalidUri
This error is raised when the decoded LNURL URI is not compliant to the specification.
InvoiceNoRoutingHints
This error is raised when no routing hints were able to be added to the invoice while trying to receive a payment.
ServiceConnectivity
This error is raised when a connection to an external service fails.
Trait Implementations§
§impl Debug for LnUrlWithdrawError
impl Debug for LnUrlWithdrawError
§impl Display for LnUrlWithdrawError
impl Display for LnUrlWithdrawError
§impl Error for LnUrlWithdrawError
impl Error for LnUrlWithdrawError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
§impl From<InvoiceError> for LnUrlWithdrawError
impl From<InvoiceError> for LnUrlWithdrawError
§fn from(value: InvoiceError) -> LnUrlWithdrawError
fn from(value: InvoiceError) -> LnUrlWithdrawError
Converts to this type from the input type.
§impl From<LnUrlError> for LnUrlWithdrawError
impl From<LnUrlError> for LnUrlWithdrawError
§fn from(value: LnUrlError) -> LnUrlWithdrawError
fn from(value: LnUrlError) -> LnUrlWithdrawError
Converts to this type from the input type.
source§impl From<PaymentError> for LnUrlWithdrawError
impl From<PaymentError> for LnUrlWithdrawError
source§fn from(value: PaymentError) -> Self
fn from(value: PaymentError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LnUrlWithdrawError
impl RefUnwindSafe for LnUrlWithdrawError
impl Send for LnUrlWithdrawError
impl Sync for LnUrlWithdrawError
impl Unpin for LnUrlWithdrawError
impl UnwindSafe for LnUrlWithdrawError
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
Mutably borrows from an owned value. Read more
§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>
Wrap the input message
T
in a tonic::Request