Enum lightning::ln::channelmanager::PaymentSendFailure

source ·
pub enum PaymentSendFailure {
    ParameterError(APIError),
    PathParameterError(Vec<Result<(), APIError>>),
    AllFailedResendSafe(Vec<APIError>),
    DuplicatePayment,
    PartialFailure {
        results: Vec<Result<(), APIError>>,
        failed_paths_retry: Option<RouteParameters>,
        payment_id: PaymentId,
    },
}
Expand description

If a payment fails to send with ChannelManager::send_payment_with_route, it can be in one of several states. This enum is returned as the Err() type describing which state the payment is in, see the description of individual enum states for more.

Variants§

§

ParameterError(APIError)

A parameter which was passed to send_payment was invalid, preventing us from attempting to send the payment at all.

You can freely resend the payment in full (with the parameter error fixed).

Because the payment failed outright, no payment tracking is done and no Event::PaymentPathFailed or Event::PaymentFailed events will be generated.

§

PathParameterError(Vec<Result<(), APIError>>)

A parameter in a single path which was passed to send_payment was invalid, preventing us from attempting to send the payment at all.

You can freely resend the payment in full (with the parameter error fixed).

Because the payment failed outright, no payment tracking is done and no Event::PaymentPathFailed or Event::PaymentFailed events will be generated.

The results here are ordered the same as the paths in the route object which was passed to send_payment.

§

AllFailedResendSafe(Vec<APIError>)

All paths which were attempted failed to send, with no channel state change taking place. You can freely resend the payment in full (though you probably want to do so over different paths than the ones selected).

Because the payment failed outright, no payment tracking is done and no Event::PaymentPathFailed or Event::PaymentFailed events will be generated.

§

DuplicatePayment

Indicates that a payment for the provided PaymentId is already in-flight and has not yet completed (i.e. generated an Event::PaymentSent or Event::PaymentFailed).

§

PartialFailure

Some paths that were attempted failed to send, though some paths may have succeeded. At least some paths have irrevocably committed to the HTLC.

The results here are ordered the same as the paths in the route object that was passed to send_payment.

Any entries that contain Err(APIError::MonitorUpdateInprogress) will send once a MonitorEvent::Completed is provided for the next-hop channel with the latest update_id.

Fields

§results: Vec<Result<(), APIError>>

The errors themselves, in the same order as the paths from the route.

§failed_paths_retry: Option<RouteParameters>

If some paths failed without irrevocably committing to the new HTLC(s), this will contain a RouteParameters object for the failing paths.

§payment_id: PaymentId

The payment id for the payment, which is now at least partially pending.

Trait Implementations§

source§

impl Clone for PaymentSendFailure

source§

fn clone(&self) -> PaymentSendFailure

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PaymentSendFailure

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for PaymentSendFailure

source§

fn eq(&self, other: &PaymentSendFailure) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for PaymentSendFailure

source§

impl StructuralPartialEq for PaymentSendFailure

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.