pub enum RevenueWithdrawalState {
Failed,
Pending,
Succeeded {
date: Integer,
url: String,
},
}Expand description
Describes the state of a revenue withdrawal operation.
Variants§
Failed
The withdrawal failed and the transaction was refunded.
Pending
The withdrawal is in progress.
Succeeded
The withdrawal succeeded.
Trait Implementations§
Source§impl Clone for RevenueWithdrawalState
impl Clone for RevenueWithdrawalState
Source§fn clone(&self) -> RevenueWithdrawalState
fn clone(&self) -> RevenueWithdrawalState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RevenueWithdrawalState
impl Debug for RevenueWithdrawalState
Source§impl<'de> Deserialize<'de> for RevenueWithdrawalState
impl<'de> Deserialize<'de> for RevenueWithdrawalState
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 RevenueWithdrawalState
impl PartialEq for RevenueWithdrawalState
Source§fn eq(&self, other: &RevenueWithdrawalState) -> bool
fn eq(&self, other: &RevenueWithdrawalState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for RevenueWithdrawalState
impl PartialOrd for RevenueWithdrawalState
Source§impl Serialize for RevenueWithdrawalState
impl Serialize for RevenueWithdrawalState
impl StructuralPartialEq for RevenueWithdrawalState
Auto Trait Implementations§
impl Freeze for RevenueWithdrawalState
impl RefUnwindSafe for RevenueWithdrawalState
impl Send for RevenueWithdrawalState
impl Sync for RevenueWithdrawalState
impl Unpin for RevenueWithdrawalState
impl UnsafeUnpin for RevenueWithdrawalState
impl UnwindSafe for RevenueWithdrawalState
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