Enum paypal_rust::resources::enums::payment_status::PaymentStatus
source · pub enum PaymentStatus {
Created,
Captured,
Denied,
Expired,
PartiallyCaptured,
PartiallyCreated,
Voided,
Pending,
}
Variants§
Implementations§
Trait Implementations§
source§impl AsRef<str> for PaymentStatus
impl AsRef<str> for PaymentStatus
source§impl Clone for PaymentStatus
impl Clone for PaymentStatus
source§fn clone(&self) -> PaymentStatus
fn clone(&self) -> PaymentStatus
Returns a copy 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 PaymentStatus
impl Debug for PaymentStatus
source§impl<'de> Deserialize<'de> for PaymentStatus
impl<'de> Deserialize<'de> for PaymentStatus
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 Display for PaymentStatus
impl Display for PaymentStatus
source§impl PartialEq<PaymentStatus> for PaymentStatus
impl PartialEq<PaymentStatus> for PaymentStatus
source§fn eq(&self, other: &PaymentStatus) -> bool
fn eq(&self, other: &PaymentStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for PaymentStatus
impl Serialize for PaymentStatus
impl Copy for PaymentStatus
impl Eq for PaymentStatus
impl StructuralEq for PaymentStatus
impl StructuralPartialEq for PaymentStatus
Auto Trait Implementations§
impl RefUnwindSafe for PaymentStatus
impl Send for PaymentStatus
impl Sync for PaymentStatus
impl Unpin for PaymentStatus
impl UnwindSafe for PaymentStatus
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.