pub enum CaptureStatus {
Completed,
Declined,
PartiallyRefunded,
Pending,
Refunded,
}Expand description
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§
Source§impl Clone for CaptureStatus
impl Clone for CaptureStatus
Source§fn clone(&self) -> CaptureStatus
fn clone(&self) -> CaptureStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CaptureStatus
impl Debug for CaptureStatus
Source§impl<'de> Deserialize<'de> for CaptureStatus
impl<'de> Deserialize<'de> for CaptureStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CaptureStatus
impl PartialEq for CaptureStatus
Source§impl Serialize for CaptureStatus
impl Serialize for CaptureStatus
impl Copy for CaptureStatus
impl Eq for CaptureStatus
impl StructuralPartialEq for CaptureStatus
Auto Trait Implementations§
impl Freeze for CaptureStatus
impl RefUnwindSafe for CaptureStatus
impl Send for CaptureStatus
impl Sync for CaptureStatus
impl Unpin for CaptureStatus
impl UnwindSafe for CaptureStatus
Blanket Implementations§
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