[][src]Enum paypal_rs::orders::CaptureStatus

pub enum CaptureStatus {
    Completed,
    Declined,
    PartiallyRefunded,
    Pending,
    Refunded,
}

The capture status.

Variants

Completed

The funds for this captured payment were credited to the payee's PayPal account.

Declined

The funds could not be captured.

PartiallyRefunded

An amount less than this captured payment's amount was partially refunded to the payer.

Pending

The funds for this captured payment was not yet credited to the payee's PayPal account. For more information, see status.details.

Refunded

An amount greater than or equal to this captured payment's amount was refunded to the payer.

Trait Implementations

impl Debug for CaptureStatus[src]

impl<'de> Deserialize<'de> for CaptureStatus[src]

impl Eq for CaptureStatus[src]

impl PartialEq<CaptureStatus> for CaptureStatus[src]

impl Serialize for CaptureStatus[src]

impl StructuralEq for CaptureStatus[src]

impl StructuralPartialEq for CaptureStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.