pub enum ReportTransactionResponse {
Paid(ReportTransactionResponsePaid),
NotPaid,
}
Variants§
Paid(ReportTransactionResponsePaid)
Payment for the transaction was sent to the order flow source
NotPaid
Payment for the transaction was not sent to the order flow source
Trait Implementations§
Source§impl Clone for ReportTransactionResponse
impl Clone for ReportTransactionResponse
Source§fn clone(&self) -> ReportTransactionResponse
fn clone(&self) -> ReportTransactionResponse
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 ReportTransactionResponse
impl Debug for ReportTransactionResponse
Source§impl<'de> Deserialize<'de> for ReportTransactionResponse
impl<'de> Deserialize<'de> for ReportTransactionResponse
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 Hash for ReportTransactionResponse
impl Hash for ReportTransactionResponse
impl Eq for ReportTransactionResponse
impl StructuralPartialEq for ReportTransactionResponse
Auto Trait Implementations§
impl Freeze for ReportTransactionResponse
impl RefUnwindSafe for ReportTransactionResponse
impl Send for ReportTransactionResponse
impl Sync for ReportTransactionResponse
impl Unpin for ReportTransactionResponse
impl UnwindSafe for ReportTransactionResponse
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