pub enum RefundStatusReason {
Echeck,
}
Expand description
The reason why the refund has the PENDING or FAILED status.
Variants§
Echeck
The customer’s account is funded through an eCheck, which has not yet cleared.
Implementations§
Trait Implementations§
Source§impl AsRef<str> for RefundStatusReason
impl AsRef<str> for RefundStatusReason
Source§impl Clone for RefundStatusReason
impl Clone for RefundStatusReason
Source§fn clone(&self) -> RefundStatusReason
fn clone(&self) -> RefundStatusReason
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RefundStatusReason
impl Debug for RefundStatusReason
Source§impl<'de> Deserialize<'de> for RefundStatusReason
impl<'de> Deserialize<'de> for RefundStatusReason
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 RefundStatusReason
impl PartialEq for RefundStatusReason
Source§impl Serialize for RefundStatusReason
impl Serialize for RefundStatusReason
impl Copy for RefundStatusReason
impl Eq for RefundStatusReason
impl StructuralPartialEq for RefundStatusReason
Auto Trait Implementations§
impl Freeze for RefundStatusReason
impl RefUnwindSafe for RefundStatusReason
impl Send for RefundStatusReason
impl Sync for RefundStatusReason
impl Unpin for RefundStatusReason
impl UnwindSafe for RefundStatusReason
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.